| /linux-6.15/Documentation/input/devices/ |
| H A D | appletouch.rst | 45 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 D | rbtree.rs | 285 ) -> 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 D | driver.rs | 145 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 D | list.rs | 324 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 D | platform.rs | 95 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 D | revocable.rs | 97 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 D | error.rs | 121 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 D | task.rs | 296 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 D | types.rs | 61 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 D | faux.rs | 27 pub fn new(name: &CStr, parent: Option<&device::Device>) -> Result<Self> { in new()
|
| /linux-6.15/rust/pin-init/src/ |
| H A D | lib.rs | 1401 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 D | helpers.rs | 5 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 D | module.rs | 97 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 D | allocator.rs | 86 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 D | allocator_test.rs | 39 ptr: Option<NonNull<u8>>, in realloc()
|
| /linux-6.15/samples/rust/ |
| H A D | rust_driver_platform.rs | 22 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 D | i40e.rst | 44 - 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 D | qcom,qca807x.yaml | 45 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 D | lock.rs | 72 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 D | panel-mipi-dbi-spi.yaml | 41 - 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 D | devlink_trap_control.sh | 549 )"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 D | mutex.rs | 127 unsafe fn try_lock(ptr: *mut Self::State) -> Option<Self::GuardState> { in try_lock()
|
| H A D | spinlock.rs | 126 unsafe fn try_lock(ptr: *mut Self::State) -> Option<Self::GuardState> { in try_lock()
|
| /linux-6.15/drivers/gpu/drm/ |
| H A D | drm_panic_qr.rs | 211 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 D | clk-palmas-clk32kg-clocks.txt | 19 Option 0 or missing this property means the clock is enabled/disabled
|