Searched refs:poll_seek (Results 1 – 9 of 9) sorted by relevance
/external/rust/crates/futures-util/src/io/ |
D | buf_reader.rs | 181 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()
|
D | buf_writer.rs | 157 fn poll_seek( in poll_seek() method 163 self.project().inner.poll_seek(cx, pos) in poll_seek()
|
D | seek.rs | 28 Pin::new(&mut this.seek).poll_seek(cx, this.pos) in poll()
|
D | cursor.rs | 154 fn poll_seek( in poll_seek() function
|
D | allow_std.rs | 152 fn poll_seek(mut self: Pin<&mut Self>, _: &mut Context<'_>, pos: SeekFrom) in poll_seek() function
|
/external/rust/crates/futures-io/src/ |
D | lib.rs | 255 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/ |
D | either.rs | 259 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/ |
D | io_buf_writer.rs | 244 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()
|
D | io_buf_reader.rs | 334 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()
|