Home
last modified time | relevance | path

Searched refs:ListLinksSelfPtr (Results 1 – 2 of 2) sorted by relevance

/linux-6.15/rust/kernel/list/
H A Dimpl_list_item_mod.rs105 let ptr: *mut $crate::list::ListLinksSelfPtr<$item_type $(, $id)?> =
188 using ListLinksSelfPtr;
205 … let spoff = $crate::list::ListLinksSelfPtr::<Self, $num>::LIST_LINKS_SELF_PTR_OFFSET;
250 … let spoff = $crate::list::ListLinksSelfPtr::<Self, $num>::LIST_LINKS_SELF_PTR_OFFSET;
/linux-6.15/rust/kernel/
H A Dlist.rs198 pub struct ListLinksSelfPtr<T: ?Sized, const ID: u64 = 0> { struct
209 unsafe impl<T: ?Sized + Send, const ID: u64> Send for ListLinksSelfPtr<T, ID> {} implementation
215 unsafe impl<T: ?Sized + Sync, const ID: u64> Sync for ListLinksSelfPtr<T, ID> {} implementation
217 impl<T: ?Sized, const ID: u64> ListLinksSelfPtr<T, ID> { impl