Home
last modified time | relevance | path

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

/linux/rust/kernel/list/
H A Dimpl_list_item_mod.rs201 // is implemented in terms of `view_links`.
204 unsafe fn view_links(me: *const Self) -> *mut $crate::list::ListLinks<$num> {
237 unsafe { <Self as $crate::list::ListItem<$num>>::view_links(me) }
275 let links_field = unsafe { <Self as $crate::list::ListItem<$num>>::view_links(me) };
303 // returns the return value of `view_links`.
306 unsafe fn view_links(me: *const Self) -> *mut $crate::list::ListLinks<$num> {
/linux/rust/kernel/
H A Dlist.rs323 unsafe fn view_links(me: *const Self) -> *mut ListLinks<ID>; in view_links() method
603 let mut item = unsafe { ListLinks::fields(T::view_links(item)) }; in remove()