/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/ |
H A D | async_write.rs | 40 fn poll_write( in poll_write() method 59 self.poll_write(cx, buf) in poll_write_vectored() 101 fn poll_write( 106 Pin::new(&mut **self).poll_write(cx, buf) 151 fn poll_write( in poll_write() function 156 Pin::as_mut(self.get_mut()).poll_write(cx, buf) in poll_write()
|
H A D | write_task.rs | 61 match Pin::new(&mut writer).poll_write(cx, self.buf) { in poll() 143 match Pin::new(&mut writer).poll_write(cx, &self.buf[self.w_len..]) { in poll()
|
H A D | stdio.rs | 111 fn poll_write(
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/pty_process/ |
H A D | pty.rs | 189 fn poll_write( in poll_write() method 194 self.0.poll_write(cx, buf) in poll_write() 266 fn poll_write( in poll_write() method 271 self.0 .0.poll_write(cx, buf) in poll_write() 325 fn poll_write( in poll_write() method 330 self.0 .0.poll_write(cx, buf) in poll_write()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ssl_stream/ |
H A D | mix.rs | 50 fn poll_write( in poll_write() function 56 MixStream::Http(s) => Pin::new(s).poll_write(ctx, buf), in poll_write() 57 MixStream::Https(s) => Pin::new(s).poll_write(ctx, buf), in poll_write()
|
H A D | wrapper.rs | 62 match stream.poll_write(cx, buf) { in write()
|
H A D | c_ssl_stream.rs | 126 fn poll_write(self: Pin<&mut Self>, ctx: &mut Context, buf: &[u8]) -> Poll<io::Result<usize>> { in poll_write() function
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/buffered/ |
H A D | async_buf_writer.rs | 180 Pin::new_unchecked(&mut this.inner).poll_write(cx, &this.buf[this.written..]) in flush() 206 fn poll_write( in poll_write() method 217 unsafe { Pin::new_unchecked(&mut this.inner).poll_write(cx, buf) } in poll_write() 261 return unsafe { Pin::new_unchecked(&mut this.inner).poll_write(cx, &bufs[0]) }; in poll_write_vectored()
|
H A D | async_buf_reader.rs | 252 fn poll_write( in poll_write() method 258 unsafe { Pin::new_unchecked(&mut this.inner).poll_write(cx, buf) } in poll_write()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/connector/ |
H A D | stream.rs | 56 fn poll_write( in poll_write() function 61 Pin::new(&mut self.stream).poll_write(cx, buf) in poll_write()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/tcp/ |
H A D | split.rs | 40 fn poll_write( in poll_write() method 45 self.0.source.poll_write(cx, buf) in poll_write() 86 fn poll_write( in poll_write() method 91 self.0.source.poll_write(cx, buf) in poll_write()
|
H A D | stream.rs | 609 fn poll_write( in poll_write() method 614 self.source.poll_write(cx, buf) in poll_write()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/io/ |
H A D | split.rs | 82 fn poll_write( in poll_write() method 88 inner.stream().poll_write(cx, buf) in poll_write()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/sys/unix/ |
H A D | child.rs | 140 fn poll_write( in poll_write() method 145 self.inner.poll_write(cx, buf) in poll_write()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/ |
H A D | input.rs | 139 .poll_write(cx, &self.buf.buf[self.buf.start..self.buf.end]) in poll_writer_frame() 168 .poll_write(cx, &self.buf.buf[index..size]) in poll_writer_frame()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/unix/ |
H A D | stream.rs | 348 fn poll_write(self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8]) -> Poll<Result<usize>> { in poll_write() method 349 self.source.poll_write(cx, buf) in poll_write()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/ |
H A D | child.rs | 342 fn poll_write( in poll_write() method 347 Pin::new(&mut self.inner).poll_write(ctx, buffer) in poll_write()
|
/ohos5.0/base/request/request/services/src/task/ |
H A D | operator.rs | 139 match Pin::new(file).poll_write(cx, data) { in poll_write_file()
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/ |
H A D | async_source.rs | 199 pub(crate) fn poll_write<'a>(
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/fs/ |
H A D | async_file.rs | 493 fn poll_write( in poll_write() method
|