Home
last modified time | relevance | path

Searched defs:poll_next (Results 1 – 25 of 122) sorted by relevance

12345

/external/rust/crates/futures-core/src/
Dstream.rs66 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>>; in poll_next() method
103 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() method
119 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() function
208 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() method
221 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<S::Item>> { in poll_next() method
/external/rust/crates/tokio-stream/src/stream_ext/
Dmerge.rs41 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T::Item>> { in poll_next() function
60 fn poll_next<T, U>( in poll_next() function
Dfuse.rs33 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T::Item>> { in poll_next() function
Dchain.rs35 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T::Item>> { in poll_next() function
Dfilter_map.rs42 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T>> { in poll_next() function
Dmap.rs40 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T>> { in poll_next() function
/external/rust/crates/tokio/tests/support/
Dmpsc_stream.rs13 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T>> { in poll_next() method
31 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T>> { in poll_next() method
/external/rust/crates/tokio-stream/src/wrappers/
Dsignal_windows.rs31 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<()>> { in poll_next() method
73 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<()>> { in poll_next() method
/external/rust/crates/futures/tests/
Dfuture_try_flatten_stream.rs32 fn poll_next(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Option<Self::Item>> { in failed_future() method
50 fn poll_next(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Option<Self::Item>> { in assert_impls() method
Dstream.rs80 fn poll_next(mut self: Pin<&mut Self>, ctx: &mut Context) -> Poll<Option<Self::Item>> { in flatten_unordered() method
111 fn poll_next(mut self: Pin<&mut Self>, ctx: &mut Context) -> Poll<Option<Self::Item>> { in flatten_unordered() method
435 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() method
/external/rust/crates/futures-util/src/io/
Dlines.rs33 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() method
/external/rust/crates/tokio-stream/tests/
Dstream_fuse.rs14 fn poll_next(mut self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Option<i32>> { in poll_next() method
/external/rust/crates/futures-util/src/stream/try_stream/
Dtry_buffered.rs50 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() function
Dtry_buffer_unordered.rs49 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() function
Dtry_flatten.rs56 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() function
/external/rust/crates/tokio-stream/src/
Donce.rs45 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T>> { in poll_next() method
Diter.rs49 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<I::Item>> { in poll_next() function
/external/rust/crates/futures-util/src/stream/
Diter.rs42 fn poll_next(mut self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Option<I::Item>> { in poll_next() function
Dpoll_immediate.rs24 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() function
Dpoll_fn.rs54 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T>> { in poll_next() function
/external/rust/crates/futures-util/src/stream/stream/
Dcycle.rs34 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() function
Dflatten.rs46 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() function
Dcatch_unwind.rs30 fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() method
/external/rust/crates/tokio-util/src/io/
Dreader_stream.rs88 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { in poll_next() method
/external/rust/crates/tokio/tests/
Dtime_interval.rs205 fn poll_next(interval: &mut task::Spawn<time::Interval>) -> Poll<Instant> { in poll_next() function

12345