Home
last modified time | relevance | path

Searched refs:async_process (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/unix/
H A Ddatagram.rs327 .async_process(Interest::WRITABLE, || self.source.send(buf)) in send()
349 .async_process(Interest::WRITABLE, || { in send_to()
371 .async_process(Interest::READABLE, || self.source.recv(buf)) in recv()
393 .async_process(Interest::READABLE, || self.source.recv_from(buf)) in recv_from()
H A Dlistener.rs69 .async_process(Interest::READABLE, || self.source.accept()) in accept()
H A Dstream.rs59 .async_process( in connect()
/ohos5.0/foundation/ai/ai_engine/test/
H A DCMakeLists.txt34 function/async_process/async_process_function_test.cpp
44 performance/delay/async_process/async_process_delay_test.cpp
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/
H A Dudp.rs236 .async_process(Interest::WRITABLE, || self.source.send_to(buf, addr)) in send_to()
347 .async_process(Interest::READABLE, || self.source.recv_from(buf)) in recv_from()
409 .async_process(Interest::READABLE, || self.source.peek_from(buf)) in peek_from()
959 .async_process(Interest::WRITABLE, || self.source.send(buf)) in send()
1079 .async_process(Interest::READABLE, || self.source.recv(buf)) in recv()
1213 .async_process(Interest::READABLE, || self.source.peek(buf)) in peek()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/tcp/
H A Dstream.rs105 .async_process( in connect_inner()
529 .async_process(Interest::READABLE, || self.source.peek(buf)) in peek()
H A Dlistener.rs102 .async_process(Interest::READABLE, || self.source.accept()) in accept()
/ohos5.0/foundation/ai/ai_engine/test/performance/
H A DBUILD.gn45 "delay/async_process/async_process_delay_test.cpp",
/ohos5.0/foundation/ai/ai_engine/test/function/
H A DBUILD.gn50 "async_process/async_process_function_test.cpp",
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/
H A Dasync_source.rs78 pub(crate) async fn async_process<F, R>(&self, interest: Interest, mut op: F) -> io::Result<R> in async_process() method