/external/rust/crates/tokio/src/io/ |
D | async_write.rs | 129 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), io::Error>>; in poll_shutdown() method 207 fn poll_shutdown(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { 208 Pin::new(&mut **self).poll_shutdown(cx) 250 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() function 251 self.get_mut().as_mut().poll_shutdown(cx) in poll_shutdown() 281 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method 311 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method 341 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method 371 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method 401 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method
|
D | stdio_common.rs | 100 fn poll_shutdown( in poll_shutdown() function 104 Pin::new(&mut self.inner).poll_shutdown(cx) in poll_shutdown() 136 fn poll_shutdown( in poll_shutdown() method 171 fn poll_shutdown( in poll_shutdown() method
|
D | stderr.rs | 103 fn poll_shutdown( in poll_shutdown() method 107 Pin::new(&mut self.std).poll_shutdown(cx) in poll_shutdown()
|
D | stdout.rs | 102 fn poll_shutdown( in poll_shutdown() method 106 Pin::new(&mut self.std).poll_shutdown(cx) in poll_shutdown()
|
D | split.rs | 126 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> { in poll_shutdown() method 128 inner.stream_pin().poll_shutdown(cx) in poll_shutdown()
|
D | blocking.rs | 173 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> { in poll_shutdown() function
|
/external/rust/crates/tokio/src/io/util/ |
D | mem.rs | 126 fn poll_shutdown( in poll_shutdown() method 130 Pin::new(&mut *self.write.lock()).poll_shutdown(cx) in poll_shutdown() 216 fn poll_shutdown( in poll_shutdown() method
|
D | buf_stream.rs | 130 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method 131 self.project().inner.poll_shutdown(cx) in poll_shutdown()
|
D | buf_writer.rs | 139 fn poll_shutdown(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method 141 self.get_pin_mut().poll_shutdown(cx) in poll_shutdown()
|
D | buf_reader.rs | 157 fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method 158 self.get_pin_mut().poll_shutdown(cx) in poll_shutdown()
|
D | shutdown.rs | 44 Pin::new(me.a).poll_shutdown(cx) in poll()
|
D | sink.rs | 68 fn poll_shutdown(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), io::Error>> { in poll_shutdown() method
|
D | copy_bidirectional.rs | 43 ready!(w.as_mut().poll_shutdown(cx))?; in transfer_one_direction()
|
/external/rust/crates/tokio/tests/ |
D | io_write_int.rs | 27 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { in write_int_should_err_if_write_count_0() method
|
D | io_write_all.rs | 38 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { in write_all() method
|
D | io_write_buf.rs | 40 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { in write_all() method
|
D | io_write.rs | 34 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { in write() method
|
D | io_split.rs | 36 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> { in poll_shutdown() method
|
/external/rust/crates/tokio/src/net/unix/ |
D | split.rs | 85 fn poll_shutdown(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method
|
D | split_owned.rs | 172 fn poll_shutdown(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method
|
D | stream.rs | 680 fn poll_shutdown(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method
|
/external/rust/crates/tokio/src/net/tcp/ |
D | split.rs | 177 fn poll_shutdown(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method
|
D | split_owned.rs | 259 fn poll_shutdown(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method
|
D | stream.rs | 1092 fn poll_shutdown(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method
|
/external/rust/crates/tokio-test/src/ |
D | io.rs | 448 fn poll_shutdown(self: Pin<&mut Self>, _cx: &mut task::Context<'_>) -> Poll<io::Result<()>> { in poll_shutdown() method
|