Home
last modified time | relevance | path

Searched refs:take_output (Results 1 – 14 of 14) sorted by relevance

/external/rust/crates/tokio/src/future/
Dtry_join.rs57 return Poll::Ready(Err(me.future1.take_output().unwrap().err().unwrap())); in poll()
63 return Poll::Ready(Err(me.future2.take_output().unwrap().err().unwrap())); in poll()
69 return Poll::Ready(Err(me.future3.take_output().unwrap().err().unwrap())); in poll()
74 me.future1.take_output().unwrap().ok().unwrap(), in poll()
75 me.future2.take_output().unwrap().ok().unwrap(), in poll()
76 me.future3.take_output().unwrap().ok().unwrap(), in poll()
Dmaybe_done.rs46 pub fn take_output(self: Pin<&mut Self>) -> Option<Fut::Output> { in take_output() method
/external/rust/crates/tokio/src/macros/
Dtry_join.rs96 … return Ready(Err(fut.take_output().expect("expected completed future").err().unwrap()))
112 .take_output()
Djoin.rs102 fut.take_output().expect("expected completed future")
/external/rust/crates/futures-macro/src/
Djoin.rs69 unsafe { __futures_crate::Pin::new_unchecked(&mut #fut) }.take_output().unwrap(), in join()
112 … unsafe { __futures_crate::Pin::new_unchecked(&mut #fut) }.take_output().unwrap().err().unwrap() in try_join()
124 … unsafe { __futures_crate::Pin::new_unchecked(&mut #fut) }.take_output().unwrap().ok().unwrap(), in try_join()
/external/rust/crates/futures-util/src/future/
Dtry_join.rs79 futures.Fut1.take_output().unwrap(),
81 futures.$Fut.take_output().unwrap()
Dmaybe_done.rs65 pub fn take_output(self: Pin<&mut Self>) -> Option<Fut::Output> { in take_output() method
Dtry_maybe_done.rs50 pub fn take_output(self: Pin<&mut Self>) -> Option<Fut::Ok> { in take_output() method
Djoin_all.rs109 .map(|e| e.take_output().unwrap()) in poll()
Dtry_join_all.rs126 .map(|e| e.take_output().unwrap()) in poll()
Djoin.rs59 Poll::Ready(($(futures.$Fut.take_output().unwrap()), *))
/external/crosvm/cros_async/src/
Dcomplete.rs66 let $Fut = self.as_mut().$Fut().take_output().unwrap();
/external/rust/crates/tokio/src/runtime/task/
Dcore.rs275 pub(super) fn take_output(&self) -> super::Result<T::Output> { in take_output() method
Dharness.rs110 *dst = Poll::Ready(self.core().stage.take_output()); in try_read_output()