Home
last modified time | relevance | path

Searched refs:poll_flush (Results 1 – 25 of 71) sorted by relevance

123

/external/rust/crates/tokio/src/io/
Dasync_write.rs69 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), io::Error>>; in poll_flush() method
203 fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> {
204 Pin::new(&mut **self).poll_flush(cx)
246 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() function
247 self.get_mut().as_mut().poll_flush(cx) in poll_flush()
277 fn poll_flush(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() method
307 fn poll_flush(mut self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() method
312 self.poll_flush(cx) in poll_shutdown()
337 fn poll_flush(mut self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() method
342 self.poll_flush(cx) in poll_shutdown()
[all …]
Dstdio_common.rs93 fn poll_flush( in poll_flush() function
97 Pin::new(&mut self.inner).poll_flush(cx) in poll_flush()
132 fn poll_flush(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> { in poll_flush() method
167 fn poll_flush(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> { in poll_flush() method
Dstderr.rs99 fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> { in poll_flush() method
100 Pin::new(&mut self.std).poll_flush(cx) in poll_flush()
Dstdout.rs98 fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> { in poll_flush() method
99 Pin::new(&mut self.std).poll_flush(cx) in poll_flush()
/external/rust/crates/futures-sink/src/
Dlib.rs98 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>; in poll_flush() method
125 fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_flush() method
126 Pin::new(&mut **self).poll_flush(cx) in poll_flush()
149 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_flush() function
150 self.get_mut().as_mut().poll_flush(cx) in poll_flush()
176 fn poll_flush(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_flush() method
198 fn poll_flush(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_flush() method
218 … fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_flush() method
219 Pin::new(&mut **self).poll_flush(cx) in poll_flush()
/external/rust/crates/futures-io/src/
Dlib.rs208 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>; in poll_flush() method
407 fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>> {
408 Pin::new(&mut **self).poll_flush(cx)
442 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>> { in poll_flush() function
443 self.get_mut().as_mut().poll_flush(cx) in poll_flush()
465 fn poll_flush(mut self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<()>> {
470 self.poll_flush(cx)
/external/rust/crates/futures-channel/src/mpsc/
Dsink_impl.rs23 fn poll_flush( in poll_flush() method
62 fn poll_flush( in poll_flush() method
93 fn poll_flush( in poll_flush() method
/external/rust/crates/futures-util/src/sink/
Dunfold.rs58 self.poll_flush(cx) in poll_ready()
71 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_flush() function
87 self.poll_flush(cx) in poll_close()
Dfanout.rs90 fn poll_flush( in poll_flush() function
96 let sink1_ready = this.sink1.poll_flush(cx)?.is_ready(); in poll_flush()
97 let sink2_ready = this.sink2.poll_flush(cx)?.is_ready(); in poll_flush()
Dmap_err.rs50 fn poll_flush( in poll_flush() function
54 self.as_mut().project().sink.poll_flush(cx).map_err(|e| self.as_mut().take_f()(e)) in poll_flush()
Dbuffer.rs102 fn poll_flush( in poll_flush() method
108 self.project().sink.poll_flush(cx) in poll_flush()
Dsend_all.rs103 ready!(Pin::new(&mut this.sink).poll_flush(cx))?; in poll()
107 ready!(Pin::new(&mut this.sink).poll_flush(cx))?; in poll()
/external/rust/crates/futures-util/src/future/
Deither.rs148 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_flush() function
150 Either::Left(x) => x.poll_flush(cx), in poll_flush()
151 Either::Right(x) => x.poll_flush(cx), in poll_flush()
239 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>> { in poll_flush() function
241 Either::Left(x) => x.poll_flush(cx), in poll_flush()
242 Either::Right(x) => x.poll_flush(cx), in poll_flush()
/external/rust/crates/tokio/src/io/util/
Dmem.rs118 fn poll_flush( in poll_flush() method
122 Pin::new(&mut *self.write.lock()).poll_flush(cx) in poll_flush()
212 fn poll_flush(self: Pin<&mut Self>, _: &mut task::Context<'_>) -> Poll<std::io::Result<()>> { in poll_flush() method
Dbuf_stream.rs126 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() method
127 self.project().inner.poll_flush(cx) in poll_flush()
Dbuf_writer.rs134 fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() method
136 self.get_pin_mut().poll_flush(cx) in poll_flush()
Dbuf_reader.rs153 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() method
154 self.get_pin_mut().poll_flush(cx) in poll_flush()
/external/rust/crates/futures/tests/
Dsplit.rs46 fn poll_flush( in test_split() method
50 self.project().sink.poll_flush(cx) in test_split()
Dio_buf_writer.rs33 fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() method
34 Pin::new(&mut self.inner).poll_flush(cx) in poll_flush()
234 fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in maybe_pending_buf_writer_seek() method
235 Pin::new(&mut self.inner).poll_flush(cx) in maybe_pending_buf_writer_seek()
/external/rust/crates/futures-util/src/io/
Dinto_sink.rs82 fn poll_flush( in poll_flush() method
88 ready!(self.project().writer.poll_flush(cx))?; in poll_flush()
Dcursor.rs214 fn poll_flush(mut self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> {
219 self.poll_flush(cx)
Dbuf_writer.rs124 fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() method
126 self.project().inner.poll_flush(cx) in poll_flush()
Dsplit.rs84 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_flush() method
85 lock_and_then(&self.handle, cx, |l, cx| l.poll_flush(cx)) in poll_flush()
/external/rust/crates/tokio/src/fs/
Dfile.rs678 fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> { in poll_flush() method
680 inner.poll_flush(cx) in poll_flush()
684 self.poll_flush(cx) in poll_shutdown()
734 if let Err(e) = poll_fn(|cx| Pin::new(&mut *self).poll_flush(cx)).await { in complete_inflight()
739 fn poll_flush(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), io::Error>> { in poll_flush() method
/external/rust/crates/futures-util/src/future/future/
Dflatten.rs135 fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_flush() function
138 FlattenProj::Second { f } => f.poll_flush(cx), in poll_flush()

123