Lines Matching refs:poll_source
32 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
343 poll_ex.run_until(go(poll_source)).unwrap(); in writemem()
377 let poll_source = async_poll_from(eventfd, &poll_ex).unwrap(); in read_eventfds() localVariable
378 let val = poll_ex.run_until(go(poll_source)).unwrap(); in read_eventfds()