Home
last modified time | relevance | path

Searched refs:IovIterSource (Results 1 – 3 of 3) sorted by relevance

/linux/rust/kernel/
H A Diov.rs44 pub struct IovIterSource<'data> { struct
51 impl<'data> IovIterSource<'data> { argument
63 pub unsafe fn from_raw<'iov>(ptr: *mut bindings::iov_iter) -> &'iov mut IovIterSource<'data> { in from_raw()
70 unsafe { &mut *ptr.cast::<IovIterSource<'data>>() } in from_raw()
H A Dmiscdevice.rs17 iov::{IovIterDest, IovIterSource},
150 fn write_iter(_kiocb: Kiocb<'_, Self::Ptr>, _iov: &mut IovIterSource<'_>) -> Result<usize> { in write_iter()
290 let iov = unsafe { IovIterSource::from_raw(iter) }; in write_iter()
/linux/samples/rust/
H A Drust_misc_device.rs102 iov::{IovIterDest, IovIterSource},
188 fn write_iter(mut kiocb: Kiocb<'_, Self::Ptr>, iov: &mut IovIterSource<'_>) -> Result<usize> { in write_iter()