Home
last modified time | relevance | path

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

/linux/rust/kernel/
H A Dio.rs38 pub struct IoRaw<const SIZE: usize = 0> { struct
43 impl<const SIZE: usize> IoRaw<SIZE> { implementation
136 pub struct Io<const SIZE: usize = 0>(IoRaw<SIZE>);
204 pub unsafe fn from_raw(raw: &IoRaw<SIZE>) -> &Self { in from_raw()
/linux/rust/kernel/pci/
H A Dio.rs12 IoRaw, //
27 io: IoRaw<SIZE>,
63 let io = match IoRaw::new(ioptr, len as usize) { in new()
/linux/rust/kernel/io/
H A Dmem.rs21 IoRaw, //
223 io: IoRaw<SIZE>,
258 let io = IoRaw::new(addr as usize, size)?; in ioremap()