Home
last modified time | relevance | path

Searched defs:T (Results 1 – 25 of 125) sorted by relevance

12345

/linux/rust/kernel/alloc/
H A Dkbox.rs202 into_raw(b: Self) -> *mut T into_raw() argument
210 leak<'a>(b: Self) -> &'a mut T leak() argument
229 assume_init(self) -> Box<T, A> assume_init() argument
239 write(mut self, value: T) -> Box<T, A> write() argument
255 new(x: T, flags: Flags) -> Result<Self, AllocError> new() argument
274 new_uninit(flags: Flags) -> Result<Box<MaybeUninit<T>, A>, AllocError> new_uninit() argument
286 pin(x: T, flags: Flags) -> Result<Pin<Box<T, A>>, AllocError> where A: 'static, pin() argument
300 forget_contents(this: Self) -> Box<MaybeUninit<T>, A> forget_contents() argument
320 drop_contents(this: Self) -> Box<MaybeUninit<T>, A> drop_contents() argument
331 into_inner(b: Self) -> T into_inner() argument
348 from(b: Box<T, A>) -> Self from() argument
361 write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> write_init() argument
370 write_pin_init<E>(mut self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> write_pin_init() argument
387 try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Pin<Self>, E> where E: From<AllocError>, try_pin_init() argument
395 try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError>, try_init() argument
423 borrow<'a>(ptr: *mut c_void) -> &'a T borrow() argument
429 borrow_mut<'a>(ptr: *mut c_void) -> &'a mut T borrow_mut() argument
458 borrow<'a>(ptr: *mut c_void) -> Pin<&'a T> borrow() argument
469 borrow_mut<'a>(ptr: *mut c_void) -> Pin<&'a mut T> borrow_mut() argument
489 deref(&self) -> &T deref() argument
501 deref_mut(&mut self) -> &mut T deref_mut() argument
531 borrow(&self) -> &T borrow() argument
559 borrow_mut(&mut self) -> &mut T borrow_mut() argument
[all...]
H A Dkvec.rs215 dec_len(&mut self, count: usize) -> &mut [T] dec_len() argument
228 as_slice(&self) -> &[T] as_slice() argument
234 as_mut_slice(&mut self) -> &mut [T] as_mut_slice() argument
241 as_mut_ptr(&mut self) -> *mut T as_mut_ptr() argument
248 as_ptr(&self) -> *const T as_ptr() argument
287 spare_capacity_mut(&mut self) -> &mut [MaybeUninit<T>] spare_capacity_mut() argument
312 push(&mut self, v: T, flags: Flags) -> Result<(), AllocError> push() argument
335 push_within_capacity(&mut self, v: T) -> Result<(), PushError<T>> push_within_capacity() argument
350 push_within_capacity_unchecked(&mut self, v: T) push_within_capacity_unchecked() argument
385 insert_within_capacity( &mut self, index: usize, element: T, ) -> Result<(), InsertError<T>> insert_within_capacity() argument
386 insert_within_capacity( &mut self, index: usize, element: T, ) -> Result<(), InsertError<T>> insert_within_capacity() argument
426 pop(&mut self) -> Option<T> pop() argument
452 remove(&mut self, i: usize) -> Result<T, RemoveError> remove() argument
537 from_raw_parts(ptr: *mut T, length: usize, capacity: usize) -> Self from_raw_parts() argument
563 into_raw_parts(self) -> (*mut T, usize, usize) into_raw_parts() argument
690 drain_all(&mut self) -> DrainAll<'_, T> drain_all() argument
726 extend_with(&mut self, n: usize, value: T, flags: Flags) -> Result<(), AllocError> extend_with() argument
765 extend_from_slice(&mut self, other: &[T], flags: Flags) -> Result<(), AllocError> extend_from_slice() argument
781 from_elem(value: T, n: usize, flags: Flags) -> Result<Self, AllocError> from_elem() argument
806 resize(&mut self, new_len: usize, value: T, flags: Flags) -> Result<(), AllocError> resize() argument
841 from(b: Box<[T; N], A>) -> Vec<T, A> from() argument
875 deref(&self) -> &[T] deref() argument
887 deref_mut(&mut self) -> &mut [T] deref_mut() argument
915 borrow(&self) -> &[T] borrow() argument
941 borrow_mut(&mut self) -> &mut [T] borrow_mut() argument
1045 into_raw_parts(self) -> (*mut T, NonNull<T>, usize, usize) into_raw_parts() argument
1089 collect(self, flags: Flags) -> Vec<T, A> collect() argument
1156 next(&mut self) -> Option<T> next() argument
1275 next(&mut self) -> Option<T> next() argument
[all...]
/linux/rust/kernel/
H A Dlist.rs340 raw_get_self_ptr(me: *const Self) -> *const Opaque<*const T> raw_get_self_ptr() argument
371 insert_inner( &mut self, item: ListArc<T, ID>, next: *mut ListLinksFields, ) -> *mut ListLinksFields insert_inner() argument
414 push_back(&mut self, item: ListArc<T, ID>) push_back() argument
422 push_front(&mut self, item: ListArc<T, ID>) push_front() argument
433 pop_back(&mut self) -> Option<ListArc<T, ID>> pop_back() argument
445 pop_front(&mut self) -> Option<ListArc<T, ID>> pop_front() argument
462 remove(&mut self, item: &T) -> Option<ListArc<T, ID>> remove() argument
503 remove_internal(&mut self, item: *mut ListLinksFields) -> ListArc<T, ID> remove_internal() argument
522 remove_internal_inner( &mut self, item: *mut ListLinksFields, next: *mut ListLinksFields, prev: *mut ListLinksFields, ) -> ListArc<T, ID> remove_internal_inner() argument
570 push_all_back(&mut self, other: &mut List<T, ID>) push_all_back() argument
599 cursor_front(&mut self) -> Cursor<'_, T, ID> cursor_front() argument
608 cursor_back(&mut self) -> Cursor<'_, T, ID> cursor_back() argument
617 iter(&self) -> Iter<'_, T, ID> iter() argument
659 next(&mut self) -> Option<ArcBorrow<'a, T>> next() argument
856 peek_next(&mut self) -> Option<CursorPeek<'_, 'a, T, true, ID>> peek_next() argument
871 peek_prev(&mut self) -> Option<CursorPeek<'_, 'a, T, false, ID>> peek_prev() argument
924 insert_inner(&mut self, item: ListArc<T, ID>) -> *mut ListLinksFields insert_inner() argument
942 insert(mut self, item: ListArc<T, ID>) insert() argument
953 insert_next(&mut self, item: ListArc<T, ID>) insert_next() argument
960 insert_prev(&mut self, item: ListArc<T, ID>) insert_prev() argument
965 remove_next(&mut self) -> Option<ListArc<T, ID>> remove_next() argument
970 remove_prev(&mut self) -> Option<ListArc<T, ID>> remove_prev() argument
990 remove(self) -> ListArc<T, ID> remove() argument
1003 arc(&self) -> ArcBorrow<'_, T> arc() argument
1030 deref(&self) -> &T deref() argument
1050 into_iter(self) -> Iter<'a, T, ID> into_iter() argument
1063 next(&mut self) -> Option<ListArc<T, ID>> next() argument
1071 next_back(&mut self) -> Option<ListArc<T, ID>> next_back() argument
1080 into_iter(self) -> IntoIter<T, ID> into_iter() argument
[all...]
H A Ddevres.rs131 data: impl PinInit<T, E> + 'a, in new() argument
166 fn inner(&self) -> &Inner<T> { in inner() argument
172 data(&self) -> &Revocable<T> data() argument
240 access<'a>(&'a self, dev: &'a Device<Bound>) -> Result<&'a T> access() argument
252 try_access(&self) -> Option<RevocableGuard<'_, T>> try_access() argument
262 try_access_with_guard<'a>(&'a self, guard: &'a rcu::Guard) -> Option<&'a T> try_access_with_guard() argument
352 register<T, E>(dev: &Device<Bound>, data: impl PinInit<T, E>, flags: Flags) -> Result where T: Send + 'static, Error: From<E>, register() argument
[all...]
H A Dtypes.rs224 pub fn new_with_data(data: T, cleanup_fun argument
230 dismiss(mut self) -> T dismiss() argument
247 deref(&self) -> &T deref() argument
254 deref_mut(&mut self) -> &mut T deref_mut() argument
395 get(&self) -> *mut T get() argument
403 cast_into(this: *const Self) -> *mut T cast_into() argument
415 pin_init<E>(slot: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
[all...]
H A Drevocable.rs85 pub fn new<E>(data: impl PinInit<T, E>) -> impl PinInit<Self, E> { in new() argument
99 pub fn try_access(&self) -> Option<RevocableGuard<'_, T>> { in try_access() argument
118 try_access_with_guard<'a>(&'a self, _guard: &'a rcu::Guard) -> Option<&'a T> try_access_with_guard() argument
150 access(&self) -> &T access() argument
246 new(data_ref: *const T, rcu_guard: rcu::Guard) -> Self new() argument
[all...]
H A Dxarray.rs122 try_lock(&self) -> Option<Guard<'_, T>> try_lock() argument
135 lock(&self) -> Guard<'_, T> lock() argument
208 remove(&mut self, index: usize) -> Option<T> remove() argument
230 store( &mut self, index: usize, value: T, gfp: alloc::Flags, ) -> Result<Option<T>, StoreError<T>> store() argument
232 store( &mut self, index: usize, value: T, gfp: alloc::Flags, ) -> Result<Option<T>, StoreError<T>> store() argument
[all...]
H A Ddma.rs303 ) -> Result<CoherentAllocation<T>> { in alloc_attrs() argument
347 alloc_coherent( dev: &device::Device<Bound>, count: usize, gfp_flags: kernel::alloc::Flags, ) -> Result<CoherentAllocation<T>> alloc_coherent() argument
367 start_ptr(&self) -> *const T start_ptr() argument
373 start_ptr_mut(&mut self) -> *mut T start_ptr_mut() argument
419 as_slice(&self, offset: usize, count: usize) -> Result<&[T]> as_slice() argument
439 as_slice_mut(&mut self, offset: usize, count: usize) -> Result<&mut [T]> as_slice_mut() argument
471 write(&mut self, src: &[T], offset: usize) -> Result write() argument
489 item_from_index(&self, offset: usize) -> Result<*mut T> item_from_index() argument
[all...]
H A Derror.rs155 pub fn to_ptr<T>(self) -> *mut T { in to_ptr() argument
409 pub fn from_err_ptr<T>(ptr: *mut T) -> Result<*mut T> { in from_err_ptr() argument
455 from_result<T, F>(f: F) -> T where T: From<i16>, F: FnOnce() -> Result<T>, from_result() argument
458 from_result<T, F>(f: F) -> T where T: From<i16>, F: FnOnce() -> Result<T>, from_result() argument
[all...]
H A Ddevice_id.rs88 const unsafe fn build(ids: [(T, argument
135 new_without_index(ids: [(T, U); N]) -> Self new_without_index() argument
142 raw_ids(&self) -> &RawIdArray<T, N> raw_ids() argument
151 new(ids: [(T, U); N]) -> Self new() argument
[all...]
/linux/rust/pin-init/src/
H A Dlib.rs1084 pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E> where F: FnOnce(Pin<&mut T>) -> Result<(), E>, pin_chain() argument
1192 chain<F>(self, f: F) -> ChainInit<Self, F, T, E> where F: FnOnce(&mut T) -> Result<(), E>, chain() argument
1248 pin_init_from_closure<T: ?Sized, E>( f: impl FnOnce(*mut T) -> Result<(), E>, ) -> impl PinInit<T, E> pin_init_from_closure() argument
1267 init_from_closure<T: ?Sized, E>( f: impl FnOnce(*mut T) -> Result<(), E>, ) -> impl Init<T, E> init_from_closure() argument
1278 cast_pin_init<T, U, E>(init: impl PinInit<T, E>) -> impl PinInit<U, E> cast_pin_init() argument
1294 cast_init<T, U, E>(init: impl Init<T, E>) -> impl Init<U, E> cast_init() argument
1307 uninit<T, E>() -> impl Init<MaybeUninit<T>, E> uninit() argument
1322 init_array_from_fn<I, const N: usize, T, E>( mut make_init: impl FnMut(usize) -> I, ) -> impl Init<[T; N], E> where I: Init<T, E>, init_array_from_fn() argument
1326 init_array_from_fn<I, const N: usize, T, E>( mut make_init: impl FnMut(usize) -> I, ) -> impl Init<[T; N], E> where I: Init<T, E>, global() argument
1365 pin_init_array_from_fn<I, const N: usize, T, E>( mut make_init: impl FnMut(usize) -> I, ) -> impl PinInit<[T; N], E> where I: PinInit<T, E>, pin_init_array_from_fn() argument
1369 pin_init_array_from_fn<I, const N: usize, T, E>( mut make_init: impl FnMut(usize) -> I, ) -> impl PinInit<[T; N], E> where I: PinInit<T, E>, global() argument
1394 unsafe impl<T> Init<T> for T { global() implementation
1404 unsafe impl<T> PinInit<T> for T { global() implementation
1442 write_init<E>(self, init: impl Init<T, E>) -> Result<Self::Initialized, E> write_init() argument
1447 write_pin_init<E>(self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> write_pin_init() argument
1551 unsafe impl<T> ZeroableOption for &T {} global() implementation
1554 unsafe impl<T> ZeroableOption for &mut T {} global() implementation
1563 init_zeroed<T: Zeroable>() -> impl Init<T> init_zeroed() argument
1594 zeroed<T: Zeroable>() -> T zeroed() argument
1708 pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
1712 pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
1719 pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
1727 pin_init<E>(init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
[all...]
H A Dalloc.rs30 fn try_pin_init<E>(init: impl PinInit<T, E>) -> Result<Pin<Self>, E> in try_pin_init() argument
50 try_init<E>(init: impl Init<T, E>) -> Result<Self, E> where E: From<AllocError> try_init() argument
82 try_pin_init<E>(init: impl PinInit<T, E>) -> Result<Pin<Self>, E> where E: From<AllocError>, try_pin_init() argument
90 try_init<E>(init: impl Init<T, E>) -> Result<Self, E> where E: From<AllocError>, try_init() argument
100 try_pin_init<E>(init: impl PinInit<T, E>) -> Result<Pin<Self>, E> where E: From<AllocError>, try_pin_init() argument
118 try_init<E>(init: impl Init<T, E>) -> Result<Self, E> where E: From<AllocError>, try_init() argument
139 write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> write_init() argument
148 write_pin_init<E>(mut self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> write_pin_init() argument
[all...]
/linux/rust/kernel/sync/
H A Darc.rs159 container_of(ptr: *const T) -> NonNull<ArcInner<T>> container_of() argument
211 try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self::PinnedSelf, E> where E: From<AllocError>, try_pin_init() argument
219 try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError>, try_init() argument
229 new(contents: T, flags: Flags) -> Result<Self, AllocError> new() argument
264 into_raw(self) -> *const T into_raw() argument
272 as_ptr(this: &Self) -> *const T as_ptr() argument
301 as_arc_borrow(&self) -> ArcBorrow<'_, T> as_arc_borrow() argument
347 into_unique_or_drop(self) -> Option<Pin<UniqueArc<T>>> into_unique_or_drop() argument
399 borrow<'a>(ptr: *mut c_void) -> ArcBorrow<'a, T> borrow() argument
409 borrow_mut<'a>(ptr: *mut c_void) -> ArcBorrow<'a, T> borrow_mut() argument
427 as_ref(&self) -> &T as_ref() argument
452 borrow(&self) -> &T borrow() argument
726 try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self::PinnedSelf, E> where E: From<AllocError>, try_pin_init() argument
734 try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError>, try_init() argument
745 write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> write_init() argument
754 write_pin_init<E>(mut self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> write_pin_init() argument
766 new(value: T, flags: Flags) -> Result<Self, AllocError> new() argument
774 new_uninit(flags: Flags) -> Result<UniqueArc<MaybeUninit<T>>, AllocError> new_uninit() argument
794 write(mut self, value: T) -> UniqueArc<T> write() argument
806 assume_init(self) -> UniqueArc<T> assume_init() argument
816 init_with<E>(mut self, init: impl Init<T, E>) -> core::result::Result<UniqueArc<T>, E> init_with() argument
828 pin_init_with<E>( mut self, init: impl PinInit<T, E>, ) -> core::result::Result<Pin<UniqueArc<T>>, E> pin_init_with() argument
829 pin_init_with<E>( mut self, init: impl PinInit<T, E>, ) -> core::result::Result<Pin<UniqueArc<T>>, E> pin_init_with() argument
885 borrow(&self) -> &T borrow() argument
910 borrow_mut(&mut self) -> &mut T borrow_mut() argument
[all...]
H A Dcondvar.rs114 fn wait_internal<T: ?Sized, B: Backend>( in wait_internal() argument
145 pub fn wait<T: ?Sized, B: Backend>(&self, guard: &mut Guard<'_, T, B>) { in wait() argument
156 pub fn wait_interruptible<T: ?Sized, B: Backend>(&self, guard: &mut Guard<'_, T, B>) -> bool { in wait_interruptible() argument
168 pub fn wait_interruptible_freezable<T: ?Sized, B: Backend>( in wait_interruptible_freezable() argument
186 pub fn wait_interruptible_timeout<T: ?Sized, B: Backend>( in wait_interruptible_timeout() argument
[all...]
H A Dlock.rs130 pub fn new(t: T, name: &'static CStr, key: Pin<&'static LockClassKey>) -> impl PinInit<Self> { in new() argument
167 lock(&self) -> Guard<'_, T, B> lock() argument
180 try_lock(&self) -> Option<Guard<'_, T, B>> try_lock() argument
229 lock_ref(&self) -> &'a Lock<T, B> lock_ref() argument
274 new(lock: &'a Lock<T, B>, state: B::GuardState) -> Self new() argument
[all...]
/linux/rust/kernel/list/
H A Darc.rs173 new(contents: T, flags: Flags) -> Result<Self, AllocError> new() argument
183 pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError>, pin_init() argument
194 init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError>, init() argument
237 pair_from_unique<const ID2: u64>(unique: UniqueArc<T>) -> (Self, ListArc<T, ID2>) where T: ListArcSafe<ID2>, pair_from_unique() argument
249 pair_from_pin_unique<const ID2: u64>( mut unique: Pin<UniqueArc<T>>, ) -> (Self, ListArc<T, ID2>) where T: ListArcSafe<ID2>, pair_from_pin_unique() argument
250 pair_from_pin_unique<const ID2: u64>( mut unique: Pin<UniqueArc<T>>, ) -> (Self, ListArc<T, ID2>) where T: ListArcSafe<ID2>, pair_from_pin_unique() argument
337 transmute_to_arc(self) -> Arc<T> transmute_to_arc() argument
349 into_raw(self) -> *const T into_raw() argument
371 into_arc(self) -> Arc<T> into_arc() argument
380 clone_arc(&self) -> Arc<T> clone_arc() argument
391 as_arc(&self) -> &Arc<T> as_arc() argument
400 as_arc_borrow(&self) -> ArcBorrow<'_, T> as_arc_borrow() argument
440 as_ref(&self) -> &Arc<T> as_ref() argument
[all...]
H A Darc_field.rs37 pub fn get_mut(&mut self) -> &mut T { in get_mut() argument
47 assert_ref(&self) -> &T assert_ref() argument
60 assert_mut(&self) -> &mut T assert_mut() argument
[all...]
/linux/drivers/comedi/drivers/tests/
H A Dni_routes_test.c310 const struct ni_route_tables *T = &private.routing_tables; in test_ni_route_to_register() local
360 const struct ni_route_tables *T = &private.routing_tables; test_ni_lookup_route_register() local
399 const struct ni_route_tables *T = &private.routing_tables; test_route_is_valid() local
454 const struct ni_route_tables *T = &private.routing_tables; test_ni_count_valid_routes() local
462 const struct ni_route_tables *T = &private.routing_tables; test_ni_get_valid_routes() local
479 const struct ni_route_tables *T = &private.routing_tables; test_ni_find_route_source() local
496 const struct ni_route_tables *T = &private.routing_tables; test_route_register_is_valid() local
511 const struct ni_route_tables *T = &private.routing_tables; test_ni_check_trigger_arg() local
544 const struct ni_route_tables *T = &private.routing_tables; test_ni_get_reg_value() local
[all...]
/linux/drivers/gpu/drm/i915/
H A Di915_params.c44 #define i915_param_named(name, T, perm, desc) \ argument
47 #define i915_param_named_unsafe(name, T, perm, desc) \ argument
52 #define MEMBER(T, member, value, ...) .member = (value), argument
185 #define PRINT(T, x, ...) _param_print(p, #x, params->x); in i915_params_dump() argument
207 #define DUP(T, x, ...) _param_dup(&dest->x); in i915_params_copy() argument
226 #define FREE(T, x, ...) _param_free(&params->x); in i915_params_free() argument
/linux/drivers/gpu/drm/i915/display/
H A Dintel_display_params.c14 #define intel_display_param_named(name, T, perm, desc) \ argument
17 #define intel_display_param_named_unsafe(name, T, perm, desc) \ argument
22 #define MEMBER(T, member, value, ...) .member = (value), argument
193 #define PRINT(T, x, ...) _param_print(p, driver_name, #x, params->x); in intel_display_params_dump() argument
216 #define DUP(T, x, ...) _param_dup(&dest->x); in intel_display_params_copy() argument
236 #define FREE(T, x, ...) _param_free(&params->x); in intel_display_params_free() argument
/linux/rust/kernel/drm/
H A Dfile.rs35 pub unsafe fn from_raw<'a>(ptr: *mut bindings::drm_file) -> &'a File<T> { in from_raw() argument
44 fn driver_priv(&self) -> *mut T { in driver_priv() argument
50 pub fn inner(&self) -> Pin<&T> { in inner() argument
[all...]
/linux/tools/testing/selftests/kvm/
H A Dguest_print_test.c41 #define TYPE(fn, ext, fmt_t, T) TYPE_##ext, argument
49 #define BUILD_TYPE_STRINGS_AND_HELPER(fn, ext, fmt_t, T) \ argument
64 #define TYPE(fn, ext, fmt_t, T) \ argument
73 #define TYPE(fn, ext, fmt_t, T) \ in guest_code() argument
/linux/include/linux/
H A Doverflow.h34 __type_max(T) global() argument
36 __type_min(T) global() argument
210 __overflows_type_constexpr(x,T) global() argument
217 __overflows_type(x,T) global() argument
236 overflows_type(n,T) global() argument
252 castable_to_type(n,T) global() argument
[all...]
/linux/lib/tests/
H A Dscanf_kunit.c173 #define value_representable_in_type(T, val) \ argument
179 #define test_one_number(T, gen_fmt, scan_fmt, val, fn) \ argument
188 #define simple_numbers_loop(T, gen_fm argument
272 random_for_type(T) global() argument
338 numbers_list_8(T,gen_fmt,field_sep,scan_fmt,fn) global() argument
358 numbers_list_fix_width(T,gen_fmt,field_sep,width,scan_fmt,fn) global() argument
366 numbers_list_val_width(T,gen_fmt,field_sep,scan_fmt,fn) global() argument
606 test_number_prefix(T,str,scan_fmt,expect0,expect1,n_args,fn) global() argument
682 _test_simple_strtoxx(T,fn,gen_fmt,expect,base) global() argument
700 test_simple_strtoxx(T,fn,gen_fmt,base) global() argument
[all...]
/linux/rust/kernel/device/
H A Dproperty.rs133 ) -> Result<PropertyGuard<'fwnode, 'name, KVec<T>>> { in property_read_array_vec() argument
193 ) -> PropertyGuard<'fwnode, 'name, T> { in property_read() argument
595 required_by(self, dev: &super::Device) -> Result<T> required_by() argument
611 optional(self) -> Option<T> optional() argument
619 or(self, default: T) -> T or() argument
628 or_default(self) -> T or_default() argument
[all...]

12345