Home
last modified time | relevance | path

Searched refs:poll_read (Results 1 - 25 of 25) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/
H A Dasync_read.rs41 fn poll_read( in poll_read() functions
50 fn poll_read( in poll_read() functions
55 Pin::new(&mut **self).poll_read(cx, buf) in poll_read()
61 fn poll_read( in poll_read() functions
66 Pin::new(&mut **self).poll_read(cx, buf) in poll_read()
76 fn poll_read( in poll_read() functions
81 self.get_mut().as_mut().poll_read(cx, buf) in poll_read()
210 fn poll_read( in poll_read() functions
H A Dstdin.rs46 fn poll_read( in poll_read() functions
H A Dread_task.rs65 match Pin::new(&mut reader).poll_read(cx, &mut buf) {
115 let poll = Pin::new(&mut reader).poll_read(cx, &mut read_buf); in poll_read_to_end()
255 let _ = match Pin::new(&mut reader).poll_read(cx, &mut this.buf) {
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
H A Dmix.rs35 // poll_read separately.
36 fn poll_read( in poll_read() functions
42 MixStream::Http(s) => Pin::new(s).poll_read(cx, buf), in poll_read()
43 MixStream::Https(s) => Pin::new(s).poll_read(cx, buf), in poll_read()
H A Drequest.rs358 fn poll_read( in poll_read() functions
368 return Pin::new(slice).poll_read(cx, buf); in poll_read()
372 BodyKind::Stream(ref mut stream) => Pin::new(stream).poll_read(cx, buf), in poll_read()
373 BodyKind::Multipart(ref mut multipart) => Pin::new(multipart).poll_read(cx, buf), in poll_read()
481 poll_fn(|cx| Pin::new(request.body_mut()).poll_read(cx, &mut read_buf)) in ut_client_request_builder_body()
H A Dhttp_body.rs239 match Pin::new(&mut io).poll_read(cx, &mut read_buf) { in poll_read_io()
363 match Pin::new(&mut io).poll_read(cx, &mut read_buf) { in poll_read_io()
469 match Pin::new(&mut io).poll_read(cx, &mut read_buf) { in data()
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/uploader/
H A Dmod.rs131 fn poll_read( in poll_read() functions
160 Pin::new(&mut this.reader).poll_read(cx, buf) in poll_read()
233 ylong_runtime::futures::poll_fn(|cx| Pin::new(&mut uploader).poll_read(cx, &mut buf))
248 ylong_runtime::futures::poll_fn(|cx| Pin::new(&mut multi_uploader).poll_read(cx, &mut buf))
325 ylong_runtime::futures::poll_fn(|cx| Pin::new(&mut uploader).poll_read(cx, &mut buf))
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/connector/
H A Dstream.rs50 // poll_read separately.
51 fn poll_read( in poll_read() functions
56 Pin::new(&mut self.stream).poll_read(cx, buf) in poll_read()
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H A Ddata_ref.rs37 pub(crate) fn poll_read(
50 match data.poll_read(cx, &mut read_buf) {
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/io/
H A Dsplit.rs71 fn poll_read( in poll_read() functions
77 guard.stream().poll_read(cx, buf) in poll_read()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/buffered/
H A Dasync_buf_reader.rs181 fn poll_read( in poll_read() functions
189 return unsafe { Pin::new_unchecked(&mut this.inner).poll_read(cx, buf) }; in poll_read()
206 poll_ready!(Pin::new_unchecked(&mut this.inner).poll_read(cx, &mut read_buf))?;
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/unix/
H A Dstream.rs338 fn poll_read( in poll_read() functions
343 self.source.poll_read(cx, buf) in poll_read()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/tcp/
H A Dstream.rs599 fn poll_read( in poll_read() functions
604 self.source.poll_read(cx, buf) in poll_read()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/pty_process/
H A Dpty.rs179 fn poll_read( in poll_read() functions
184 self.0.poll_read(cx, buf) in poll_read()
229 fn poll_read( in poll_read() functions
234 self.0 .0.poll_read(cx, buf) in poll_read()
288 fn poll_read( in poll_read() functions
293 self.0 .0.poll_read(cx, buf) in poll_read()
/commonlibrary/rust/ylong_http/ylong_http/src/body/mime/
H A Dsimple.rs205 fn poll_read( in poll_read() functions
226 match Pin::new(status).poll_read(cx, buf) { in poll_read()
465 let result = unsafe { Pin::new_unchecked(stream).poll_read(cx, buf) }; in poll_read_curr()
483 fn poll_read( in poll_read() functions
743 poll_fn(|cx| Pin::new(&mut mp).poll_read(cx, &mut read_buf))
794 poll_fn(|cx| Pin::new(&mut mp).poll_read(cx, &mut read_buf))
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ssl_stream/
H A Dc_ssl_stream.rs93 fn poll_read( in poll_read() functions
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/conn/
H A Dhttp2.rs351 fn poll_read( in poll_read() functions
505 poll_fn(|cx| Pin::new(&mut text_io).poll_read(cx, &mut buffer)) in ut_http2_body_poll_read()
H A Dhttp3.rs296 fn poll_read( in poll_read() functions
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/
H A Doutput.rs85 match Pin::new(&mut self.reader).poll_read(cx, &mut read_buf) {
H A Dstreams.rs42 // Wait for poll_read or wait for window.
476 match stream.data.poll_read(cx, buf) { in poll_sized_data()
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/
H A Dasync_source.rs175 pub(crate) fn poll_read<'a>(
/commonlibrary/rust/ylong_http/ylong_http/src/body/mime/common/
H A Dmix.rs208 match Pin::new(data).poll_read(cx, &mut buf) { in poll_data()
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h3/
H A Dstreams.rs487 match stream.data.poll_read(cx, buf) {
704 // Wait for poll_read or wait for window.
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/fs/
H A Dasync_file.rs526 fn poll_read( in poll_read() functions
/commonlibrary/rust/ylong_http/ylong_http/src/body/
H A Dchunk.rs202 match Pin::new(&mut *self.from).poll_read(_cx, &mut read_buf) { in poll_partial()

Completed in 16 milliseconds