Searched refs:try_poll_next (Results 1 – 17 of 17) sorted by relevance
61 if let Some(item) = ready!(s.try_poll_next(cx)?) { in poll_next()66 } else if let Some(s) = ready!(this.stream.as_mut().try_poll_next(cx)?) { in poll_next()
74 return this.stream.try_poll_next(cx); in poll_next()87 } else if let Some(item) = ready!(this.stream.as_mut().try_poll_next(cx)?) { in poll_next()
41 self.project().stream.try_poll_next(cx) in poll_next()
43 if let Some(x) = ready!(this.stream.as_mut().try_poll_next(cx)?) { in poll()
52 match ready!(this.stream.as_mut().try_poll_next(cx)?) { in poll()
62 match ready!(this.stream.as_mut().try_poll_next(cx)?) { in poll()
77 } else if let Some(item) = ready!(this.stream.as_mut().try_poll_next(cx)?) { in poll_next()
66 } else if let Some(item) = ready!(this.stream.as_mut().try_poll_next(cx)?) { in poll_next()
83 let res = ready!(this.stream.as_mut().try_poll_next(cx)); in poll()
67 match ready!(this.stream.as_mut().try_poll_next(cx)) { in poll_next()
88 } else if let Some(item) = ready!(this.stream.as_mut().try_poll_next(cx)?) { in poll_next()
80 Some(stream) => stream.try_poll_next(cx), in poll()
91 } else if let Some(item) = ready!(this.stream.as_mut().try_poll_next(cx)?) { in poll_next()
936 Pin::new(self).try_poll_next(cx) in try_poll_next_unpin()
188 fn try_poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) in try_poll_next() method198 fn try_poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) in try_poll_next() function
98 let output = ready!(f.try_poll_next(cx)); in poll_next()
134 with_context(self, |inner, cx| match inner.try_poll_next(cx)? { in poll()