Home
last modified time | relevance | path

Searched refs:async_uring_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};
249 let uring_source = async_uring_from(f, &uring_ex).unwrap(); in readvec()
271 let uring_source = async_uring_from(f, &ex).unwrap(); in writevec()
311 let uring_source = async_uring_from(f, &ex).unwrap(); in readmem()
337 let uring_source = async_uring_from(f, &ex).unwrap(); in writemem()
349 let source = async_uring_from(async_source, &ex).unwrap(); in read_u64s()
370 let uring_source = async_uring_from(eventfd, &ex).unwrap(); in read_eventfds()
Dexecutor.rs15 pub(crate) fn async_uring_from<'a, F: IntoAsync + 'a>( in async_uring_from() function
145 Executor::Uring(ex) => async_uring_from(f, ex), in async_from()
Devent.rs27 crate::executor::async_uring_from(event, ex).map(|io_source| EventAsync { io_source }) in new_uring()
Dtimer.rs31 crate::executor::async_uring_from(timer, ex).map(|io_source| TimerAsync { io_source }) in new_uring()