Home
last modified time | relevance | path

Searched refs:poll_seek (Results 1 – 9 of 9) sorted by relevance

/external/rust/crates/futures-util/src/io/
Dbuf_reader.rs181 fn poll_seek( in poll_seek() method
195 … result = ready!(self.as_mut().project().inner.poll_seek(cx, SeekFrom::Current(offset)))?; in poll_seek()
198 ready!(self.as_mut().project().inner.poll_seek(cx, SeekFrom::Current(-remainder)))?; in poll_seek()
200 result = ready!(self.as_mut().project().inner.poll_seek(cx, SeekFrom::Current(n)))?; in poll_seek()
204 result = ready!(self.as_mut().project().inner.poll_seek(cx, pos))?; in poll_seek()
Dbuf_writer.rs157 fn poll_seek( in poll_seek() method
163 self.project().inner.poll_seek(cx, pos) in poll_seek()
Dseek.rs28 Pin::new(&mut this.seek).poll_seek(cx, this.pos) in poll()
Dcursor.rs154 fn poll_seek( in poll_seek() function
Dallow_std.rs152 fn poll_seek(mut self: Pin<&mut Self>, _: &mut Context<'_>, pos: SeekFrom) in poll_seek() function
/external/rust/crates/futures-io/src/
Dlib.rs255 fn poll_seek(self: Pin<&mut Self>, cx: &mut Context<'_>, pos: SeekFrom) in poll_seek() method
481 fn poll_seek(mut self: Pin<&mut Self>, cx: &mut Context<'_>, pos: SeekFrom)
484 Pin::new(&mut **self).poll_seek(cx, pos)
502 fn poll_seek(self: Pin<&mut Self>, cx: &mut Context<'_>, pos: SeekFrom) in poll_seek() function
505 self.get_mut().as_mut().poll_seek(cx, pos) in poll_seek()
/external/rust/crates/futures-util/src/future/
Deither.rs259 fn poll_seek( in poll_seek() function
265 Either::Left(x) => x.poll_seek(cx, pos), in poll_seek()
266 Either::Right(x) => x.poll_seek(cx, pos), in poll_seek()
/external/rust/crates/futures/tests/
Dio_buf_writer.rs244 fn poll_seek(mut self: Pin<&mut Self>, cx: &mut Context<'_>, pos: SeekFrom) in maybe_pending_buf_writer_seek() method
249 Pin::new(&mut self.inner).poll_seek(cx, pos) in maybe_pending_buf_writer_seek()
Dio_buf_reader.rs334 fn poll_seek(mut self: Pin<&mut Self>, cx: &mut Context<'_>, pos: SeekFrom) in maybe_pending_seek() method
339 Pin::new(&mut self.inner).poll_seek(cx, pos) in maybe_pending_seek()