Home
last modified time | relevance | path

Searched refs:poll_recv (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/unbounded/
H A Dmod.rs293 pub fn poll_recv(&mut self, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>> { in poll_recv() method
294 self.channel.poll_recv(cx) in poll_recv()
320 poll_fn(|cx| self.channel.poll_recv(cx)).await in recv()
H A Dqueue.rs219 pub(crate) fn poll_recv(&self, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>> { in poll_recv() method
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/bounded/
H A Dmod.rs412 pub fn poll_recv(&mut self, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>> { in poll_recv() method
413 self.channel.poll_recv(cx) in poll_recv()
440 poll_fn(|cx| self.channel.poll_recv(cx)).await in recv()
H A Darray.rs168 pub(crate) fn poll_recv(&self, cx: &mut Context<'_>) -> Poll<Result<T, RecvError>> { in poll_recv() method
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/signal/
H A Dmod.rs147 pub fn poll_recv(&mut self, cx: &mut Context<'_>) -> Poll<()> { in poll_recv() method
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/
H A Dinput.rs192 match self.req_rx.poll_recv(cx) { in poll_recv_frame()
198 match self.req_rx.poll_recv(cx) { in poll_recv_frame()
H A Dmanager.rs73 match manager.resp_rx.poll_recv(cx) { in poll()
169 match self.req_rx.poll_recv(cx) { in poll_recv_request()
188 match self.req_rx.poll_recv(cx) { in poll_recv_request()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H A Ddispatcher.rs578 pub(crate) fn poll_recv( in poll_recv() method
584 match receiver.poll_recv(cx) { in poll_recv()
596 match receiver.poll_recv(cx) { in poll_recv()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/sys/unix/
H A Dchild.rs68 let signal_pending = self.signal.poll_recv(cx).is_pending(); in poll()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/
H A Dsignal.rs98 poll_fn(|cx| stream.poll_recv(cx)).await; in sdv_signal_poll_recv_test()
H A Dudp_test.rs295 ylong_runtime::futures::poll_fn(|cx| connected_receiver.poll_recv(cx, &mut read)) in sdv_udp_send_recv_poll()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/signal/unix/
H A Dmod.rs461 poll_fn(|cx| signal.poll_recv(cx)).await; in ut_signal_recv_and_poll_recv()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/
H A Dudp.rs1168 pub fn poll_recv(&self, cx: &mut Context<'_>, buf: &mut ReadBuf<'_>) -> Poll<io::Result<()>> { in poll_recv() method
1611 poll_fn(|cx| connected_receiver.poll_recv(cx, &mut read)) in ut_send_recv_poll()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/conn/
H A Dhttp2.rs363 .poll_recv(cx) in poll_read()