Lines Matching refs:io_read
274 fn io_read<'a>(view: Self::View<'a, T>) -> T; in io_read() method
504 Self::Backend::io_read(self.as_view()) in read_val()
850 Ok(Self::Backend::io_read(view).into()) in try_read()
963 let value: T = Self::Backend::io_read(view).into(); in try_update()
998 Self::Backend::io_read(view).into() in read()
1106 let value: T = Self::Backend::io_read(view).into(); in update()
1196 fn io_read(view: <$backend as IoBackend>::View<'_, $ty>) -> $ty {
1356 fn io_read(view: SysMem<'_, $ty>) -> $ty {
1561 fn io_read(view: Self::View<'_, T>) -> T { in io_read() function
1563 IoSysMap::Io(l) => MmioBackend::io_read(l), in io_read()
1564 IoSysMap::Sys(r) => SysMemBackend::io_read(r), in io_read()
1712 macro_rules! io_read { macro
1718 pub use crate::io_read;