Home
last modified time | relevance | path

Searched refs:Option (Results 1 – 25 of 78) sorted by relevance

1234

/linux-6.15/Documentation/input/devices/
H A Dappletouch.rst45 Option "LeftEdge" "0"
46 Option "RightEdge" "850"
47 Option "TopEdge" "0"
48 Option "BottomEdge" "645"
49 Option "MinSpeed" "0.4"
50 Option "MaxSpeed" "1"
52 Option "FingerLow" "0"
53 Option "FingerHigh" "30"
54 Option "MaxTapMove" "20"
55 Option "MaxTapTime" "100"
[all …]
/linux-6.15/rust/kernel/
H A Drbtree.rs285 ) -> Result<Option<RBTreeNode<K, V>>> { in try_create_and_insert()
375 pub fn get(&self, key: &K) -> Option<&V> { in get()
409 pub fn remove(&mut self, key: &K) -> Option<V> { in remove()
818 pub fn move_prev(self) -> Option<Self> { in move_prev()
823 pub fn move_next(self) -> Option<Self> { in move_next()
827 fn mv(self, direction: Direction) -> Option<Self> { in mv()
837 pub fn peek_prev(&self) -> Option<(&K, &V)> { in peek_prev()
842 pub fn peek_next(&self) -> Option<(&K, &V)> { in peek_next()
962 fn next(&mut self) -> Option<Self::Item> { in next()
997 fn next(&mut self) -> Option<Self::Item> { in next()
[all …]
H A Ddriver.rs145 fn of_id_table() -> Option<of::IdTable<Self::IdInfo>>; in of_id_table()
151 fn of_id_info(dev: &device::Device) -> Option<&'static Self::IdInfo> { in of_id_info()
172 fn of_id_info(_dev: &device::Device) -> Option<&'static Self::IdInfo> { in of_id_info()
180 fn id_info(dev: &device::Device) -> Option<&'static Self::IdInfo> { in id_info()
H A Dlist.rs324 pub fn pop_back(&mut self) -> Option<ListArc<T, ID>> { in pop_back()
336 pub fn pop_front(&mut self) -> Option<ListArc<T, ID>> { in pop_front()
353 pub unsafe fn remove(&mut self, item: &T) -> Option<ListArc<T, ID>> { in remove()
550 fn next(&mut self) -> Option<ArcBorrow<'a, T>> { in next()
750 pub fn peek_next(&mut self) -> Option<CursorPeek<'_, 'a, T, true, ID>> { in peek_next()
765 pub fn peek_prev(&mut self) -> Option<CursorPeek<'_, 'a, T, false, ID>> { in peek_prev()
859 pub fn remove_next(&mut self) -> Option<ListArc<T, ID>> { in remove_next()
864 pub fn remove_prev(&mut self) -> Option<ListArc<T, ID>> { in remove_prev()
957 fn next(&mut self) -> Option<ListArc<T, ID>> { in next()
965 fn next_back(&mut self) -> Option<ListArc<T, ID>> { in next_back()
H A Dplatform.rs95 fn of_id_table() -> Option<of::IdTable<Self::IdInfo>> { in of_id_table()
161 const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>>;
167 fn probe(dev: &Device<device::Core>, id_info: Option<&Self::IdInfo>) in probe()
H A Drevocable.rs97 pub fn try_access(&self) -> Option<RevocableGuard<'_, T>> { in try_access()
116 pub fn try_access_with_guard<'a>(&'a self, _guard: &'a rcu::Guard) -> Option<&'a T> { in try_access_with_guard()
H A Derror.rs121 const fn try_from_errno(errno: crate::ffi::c_int) -> Option<Error> { in try_from_errno()
161 pub fn name(&self) -> Option<&'static CStr> { in name()
178 pub fn name(&self) -> Option<&'static CStr> { in name()
H A Dtask.rs296 pub fn get_pid_ns(&self) -> Option<ARef<PidNamespace>> { in get_pid_ns()
311 pub fn tgid_nr_ns(&self, pidns: Option<&PidNamespace>) -> Pid { in tgid_nr_ns()
H A Dtypes.rs61 unsafe fn try_from_foreign(ptr: *mut crate::ffi::c_void) -> Option<Self> { in try_from_foreign()
203 pub struct ScopeGuard<T, F: FnOnce(T)>(Option<(T, F)>);
H A Dfaux.rs27 pub fn new(name: &CStr, parent: Option<&device::Device>) -> Result<Self> { in new()
/linux-6.15/rust/pin-init/src/
H A Dlib.rs1401 unsafe impl<T: ZeroableOption> Zeroable for Option<T> {} implementation
1451 Option<NonZeroU8>, Option<NonZeroU16>, Option<NonZeroU32>, Option<NonZeroU64>,
1452 Option<NonZeroU128>, Option<NonZeroUsize>,
1453 Option<NonZeroI8>, Option<NonZeroI16>, Option<NonZeroI32>, Option<NonZeroI64>,
1454 Option<NonZeroI128>, Option<NonZeroIsize>,
1455 {<T>} Option<NonNull<T>>,
/linux-6.15/rust/macros/
H A Dhelpers.rs5 pub(crate) fn try_ident(it: &mut token_stream::IntoIter) -> Option<String> { in try_ident()
13 pub(crate) fn try_literal(it: &mut token_stream::IntoIter) -> Option<String> { in try_literal()
21 pub(crate) fn try_string(it: &mut token_stream::IntoIter) -> Option<String> { in try_string()
74 pub(crate) fn function_name(input: TokenStream) -> Option<Ident> { in function_name()
H A Dmodule.rs97 author: Option<String>,
98 authors: Option<Vec<String>>,
99 description: Option<String>,
100 alias: Option<Vec<String>>,
101 firmware: Option<Vec<String>>,
/linux-6.15/rust/kernel/alloc/
H A Dallocator.rs86 ptr: Option<NonNull<u8>>, in call()
133 ptr: Option<NonNull<u8>>, in realloc()
150 ptr: Option<NonNull<u8>>, in realloc()
174 ptr: Option<NonNull<u8>>, in realloc()
H A Dallocator_test.rs39 ptr: Option<NonNull<u8>>, in realloc()
/linux-6.15/samples/rust/
H A Drust_driver_platform.rs22 const OF_ID_TABLE: Option<of::IdTable<Self::IdInfo>> = Some(&OF_TABLE);
26 info: Option<&Self::IdInfo>, in probe()
/linux-6.15/Documentation/networking/devlink/
H A Di40e.rst44 - Version of the Option ROM containing the UEFI driver. The version is
50 a fix is delivered as a patch against an older base Option ROM.
/linux-6.15/Documentation/devicetree/bindings/net/
H A Dqcom,qca807x.yaml45 Option 1 PSGMII for copper Disabled
47 Option 2 PSGMII for copper 1000BASE-X / 100BASE-FX
49 Option 3 QSGMII for copper SGMII for
/linux-6.15/rust/kernel/sync/
H A Dlock.rs72 unsafe fn try_lock(ptr: *mut Self::State) -> Option<Self::GuardState>; in try_lock()
178 pub fn try_lock(&self) -> Option<Guard<'_, T, B>> { in try_lock()
/linux-6.15/Documentation/devicetree/bindings/display/panel/
H A Dpanel-mipi-dbi-spi.yaml41 - Option 1: 9-bit mode and D/CX as the 9th bit
45 - Option 2: 16-bit mode and D/CX as a 9th bit
49 - Option 3: 8-bit mode and D/CX as a separate interface line
/linux-6.15/tools/testing/selftests/drivers/net/mlxsw/
H A Ddevlink_trap_control.sh549 )"94:"$( : Option Number
550 )"04:"$( : Option Length
551 )"00:00:"$( : Option Data
573 )"05:02:00:00:00:00:"$( : Option Data
/linux-6.15/rust/kernel/sync/lock/
H A Dmutex.rs127 unsafe fn try_lock(ptr: *mut Self::State) -> Option<Self::GuardState> { in try_lock()
H A Dspinlock.rs126 unsafe fn try_lock(ptr: *mut Self::State) -> Option<Self::GuardState> { in try_lock()
/linux-6.15/drivers/gpu/drm/
H A Ddrm_panic_qr.rs211 fn from_segments(segments: &[&Segment<'_>]) -> Option<Version> { in from_segments()
385 fn next(&mut self) -> Option<Self::Item> { in next()
441 fn new<'a>(segments: &[&Segment<'_>], data: &'a mut [u8]) -> Option<EncodedMsg<'a>> { in new()
574 fn next(&mut self) -> Option<Self::Item> { in next()
/linux-6.15/Documentation/devicetree/bindings/clock/
H A Dclk-palmas-clk32kg-clocks.txt19 Option 0 or missing this property means the clock is enabled/disabled

1234