Home
last modified time | relevance | path

Searched refs:async_poll_from (Results 1 – 4 of 4) sorted by relevance

/external/crosvm/cros_async/src/
Dio_ext.rs135 use crate::executor::{async_poll_from, async_uring_from};
254 let poll_source = async_poll_from(f, &poll_ex).unwrap(); in readvec()
276 let poll_source = async_poll_from(f, &poll_ex).unwrap(); in writevec()
316 let poll_source = async_poll_from(f, &poll_ex).unwrap(); in readmem()
342 let poll_source = async_poll_from(f, &poll_ex).unwrap(); in writemem()
377 let poll_source = async_poll_from(eventfd, &poll_ex).unwrap(); in read_eventfds()
Dexecutor.rs23 pub(crate) fn async_poll_from<'a, F: IntoAsync + 'a>( in async_poll_from() function
146 Executor::Fd(ex) => async_poll_from(f, ex), in async_from()
Devent.rs22 crate::executor::async_poll_from(event, ex).map(|io_source| EventAsync { io_source }) in new_poll()
Dtimer.rs26 crate::executor::async_poll_from(timer, ex).map(|io_source| TimerAsync { io_source }) in new_poll()