Home
last modified time | relevance | path

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

/external/crosvm/cros_async/src/
Dio_ext.rs32 Poll(crate::poll_source::Error),
45 impl From<crate::poll_source::Error> for Error {
46 fn from(err: crate::poll_source::Error) -> Self { in from()
254 let poll_source = async_poll_from(f, &poll_ex).unwrap(); in readvec() localVariable
255 poll_ex.run_until(go(poll_source)).unwrap(); in readvec()
276 let poll_source = async_poll_from(f, &poll_ex).unwrap(); in writevec() localVariable
277 poll_ex.run_until(go(poll_source)).unwrap(); in writevec()
316 let poll_source = async_poll_from(f, &poll_ex).unwrap(); in readmem() localVariable
317 poll_ex.run_until(go(poll_source)).unwrap(); in readmem()
342 let poll_source = async_poll_from(f, &poll_ex).unwrap(); in writemem() localVariable
[all …]
Dlib.rs67 mod poll_source; module
83 pub use poll_source::PollSource;
Dexecutor.rs9 use crate::poll_source::Error as PollError;