Home
last modified time | relevance | path

Searched refs:async_io (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/tokio/src/net/
Dudp.rs466 .async_io(Interest::WRITABLE, || self.io.send(buf)) in send()
639 .async_io(Interest::READABLE, || self.io.recv(buf)) in recv()
997 .async_io(Interest::WRITABLE, || self.io.send_to(buf, target)) in send_to_addr()
1029 .async_io(Interest::READABLE, || self.io.recv_from(buf)) in recv_from()
1159 .async_io(Interest::READABLE, || self.io.peek_from(buf)) in peek_from()
/external/rust/crates/tokio/src/net/unix/datagram/
Dsocket.rs520 .async_io(Interest::WRITABLE, || self.io.send(buf)) in send()
643 .async_io(Interest::READABLE, || self.io.recv(buf)) in recv()
860 .async_io(Interest::WRITABLE, || self.io.send_to(buf, target.as_ref())) in send_to()
901 .async_io(Interest::READABLE, || self.io.recv_from(buf)) in recv_from()
/external/rust/crates/tokio/src/net/unix/
Dlistener.rs135 .async_io(Interest::READABLE, || self.io.accept()) in accept()
/external/rust/crates/tokio/src/net/tcp/
Dlistener.rs153 .async_io(Interest::READABLE, || self.io.accept()) in accept()
Dstream.rs818 .async_io(Interest::READABLE, || self.io.peek(buf)) in peek()
/external/rust/crates/tokio/src/io/driver/
Dregistration.rs248 …pub(crate) async fn async_io<R>(&self, interest: Interest, mut f: impl FnMut() -> io::Result<R>) -…
/external/libiio/src/iiod/
Dops.c135 static ssize_t async_io(struct parser_pdata *pdata, void *buf, size_t len, in async_io() function
219 return async_io(pdata, dest, len, true); in readfd_aio()
227 return async_io(pdata, (void *)dest, len, false); in writefd_aio()