Home
last modified time | relevance | path

Searched refs:poll_close (Results 1 – 25 of 38) sorted by relevance

12

/external/rust/crates/futures-sink/src/
Dlib.rs111 fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>; in poll_close() method
129 fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_close() method
130 Pin::new(&mut **self).poll_close(cx) in poll_close()
153 fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_close() function
154 self.get_mut().as_mut().poll_close(cx) in poll_close()
180 fn poll_close(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_close() method
202 fn poll_close(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_close() method
222 … fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_close() method
223 Pin::new(&mut **self).poll_close(cx) in poll_close()
/external/rust/crates/futures-channel/src/mpsc/
Dsink_impl.rs36 fn poll_close( in poll_close() method
69 fn poll_close( in poll_close() method
100 fn poll_close( in poll_close() method
/external/rust/crates/futures-io/src/
Dlib.rs225 fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>; in poll_close() method
411 fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>> {
412 Pin::new(&mut **self).poll_close(cx)
446 fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>> { in poll_close() function
447 self.get_mut().as_mut().poll_close(cx) in poll_close()
469 fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>> {
/external/rust/crates/futures-util/src/future/
Deither.rs155 fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_close() function
157 Either::Left(x) => x.poll_close(cx), in poll_close()
158 Either::Right(x) => x.poll_close(cx), in poll_close()
246 fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>> { in poll_close() function
248 Either::Left(x) => x.poll_close(cx), in poll_close()
249 Either::Right(x) => x.poll_close(cx), in poll_close()
/external/rust/crates/futures-util/src/sink/
Dfanout.rs102 fn poll_close( in poll_close() function
108 let sink1_ready = this.sink1.poll_close(cx)?.is_ready(); in poll_close()
109 let sink2_ready = this.sink2.poll_close(cx)?.is_ready(); in poll_close()
Dmap_err.rs57 fn poll_close( in poll_close() function
61 self.as_mut().project().sink.poll_close(cx).map_err(|e| self.as_mut().take_f()(e)) in poll_close()
Dbuffer.rs112 fn poll_close( in poll_close() method
118 self.project().sink.poll_close(cx) in poll_close()
Dwith.rs145 fn poll_close( in poll_close() function
150 ready!(self.project().sink.poll_close(cx)?); in poll_close()
Dwith_flat_map.rs141 fn poll_close( in poll_close() function
146 self.project().sink.poll_close(cx) in poll_close()
Dclose.rs36 Pin::new(&mut self.sink).poll_close(cx) in poll()
Ddrain.rs59 fn poll_close( in poll_close() method
Dunfold.rs86 fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { in poll_close() function
/external/rust/crates/futures/tests/
Dsplit.rs53 fn poll_close( in test_split() method
57 self.project().sink.poll_close(cx) in test_split()
Dio_buf_writer.rs37 fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_close() method
38 Pin::new(&mut self.inner).poll_close(cx) in poll_close()
238 fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in maybe_pending_buf_writer_seek() method
239 Pin::new(&mut self.inner).poll_close(cx) in maybe_pending_buf_writer_seek()
/external/rust/crates/futures-util/src/io/
Dinto_sink.rs92 fn poll_close( in poll_close() method
98 ready!(self.project().writer.poll_close(cx))?; in poll_close()
Dbuf_writer.rs129 fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_close() method
131 self.project().inner.poll_close(cx) in poll_close()
Dsplit.rs88 fn poll_close(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_close() method
89 lock_and_then(&self.handle, cx, |l, cx| l.poll_close(cx)) in poll_close()
Dclose.rs26 Pin::new(&mut *self.writer).poll_close(cx) in poll()
Dsink.rs58 fn poll_close(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<io::Result<()>> { in poll_close() method
/external/rust/crates/futures-util/src/future/future/
Dflatten.rs143 fn poll_close( in poll_close() function
148 FlattenProj::Second { f } => f.poll_close(cx), in poll_close()
/external/rust/crates/futures-util/src/
Dlib.rs87 fn poll_close(
91 self.project().$field.poll_close(cx)
145 fn poll_close(
149 self.project().$field.poll_close(cx)
/external/rust/crates/futures-util/src/stream/try_stream/
Dinto_async_read.rs125 fn poll_close( in poll_close() function
129 Pin::new( &mut self.stream ).poll_close( cx ) in poll_close()
/external/rust/crates/futures-util/src/future/try_future/
Dtry_flatten.rs158 fn poll_close( in poll_close() function
163 TryFlattenProj::Second { f } => f.poll_close(cx), in poll_close()
/external/rust/crates/futures-util/src/stream/stream/
Dsplit.rs108 fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), S::Error>> { in poll_close() method
112 inner.as_pin_mut().poll_close(cx) in poll_close()
Dforward.rs71 ready!(si.poll_close(cx))?; in poll()

12