Home
last modified time | relevance | path

Searched refs:poll_shutdown (Results 1 - 14 of 14) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/
H A Dasync_write.rs94 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>>; in poll_flush() functions
131 /// A default poll_shutdown implementation for an object that could be deref to in poll_flush()
133 fn poll_shutdown(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() functions
134 Pin::new(&mut **self).poll_shutdown(cx) in poll_flush()
175 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() functions
176 Pin::as_mut(self.get_mut()).poll_shutdown(cx) in poll_flush()
H A Dstdio.rs188 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() functions
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ssl_stream/
H A Dc_ssl_stream.rs134 fn poll_shutdown(mut self: Pin<&mut Self>, ctx: &mut Context) -> Poll<io::Result<()>> { in poll_shutdown() functions
158 self.get_pin_mut().poll_shutdown(ctx) in poll_shutdown()
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/connector/
H A Dstream.rs77 fn poll_shutdown(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<std::io::Result<()>> { in poll_flush() functions
78 Pin::new(&mut self.stream).poll_shutdown(cx) in poll_flush()
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
H A Dmix.rs74 fn poll_shutdown(mut self: Pin<&mut Self>, ctx: &mut Context<'_>) -> Poll<std::io::Result<()>> { in poll_shutdown() functions
76 MixStream::Http(s) => Pin::new(s).poll_shutdown(ctx), in poll_shutdown()
77 MixStream::Https(s) => Pin::new(s).poll_shutdown(ctx), in poll_shutdown()
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/io/
H A Dsplit.rs109 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<std::io::Result<()>> { in poll_shutdown() functions
111 inner.stream().poll_shutdown(cx)
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/buffered/
H A Dasync_buf_reader.rs279 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<std::io::Result<()>> { in poll_shutdown() functions
281 unsafe { Pin::new_unchecked(&mut this.inner).poll_shutdown(cx) }
H A Dasync_buf_writer.rs288 fn poll_shutdown(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() functions
291 unsafe { Pin::new_unchecked(&mut this.inner).poll_shutdown(cx) }
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/unix/
H A Dstream.rs368 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Result<()>> { in poll_flush() functions
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/tcp/
H A Dstream.rs633 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() functions
H A Dsplit.rs64 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<std::io::Result<()>> { in poll_flush() functions
110 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<std::io::Result<()>> { in poll_flush() functions
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/pty_process/
H A Dpty.rs201 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() functions
278 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() functions
337 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { functions
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/sys/unix/
H A Dchild.rs164 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() functions
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/
H A Dchild.rs366 fn poll_shutdown(mut self: Pin<&mut Self>, ctx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() functions
367 Pin::new(&mut self.inner).poll_shutdown(ctx) in poll_flush()

Completed in 7 milliseconds