Home
last modified time | relevance | path

Searched defs:JoinError (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/runtime/task/
Derror.rs20 impl JoinError { implementation
21 pub(crate) fn cancelled(id: Id) -> JoinError { in cancelled()
28 pub(crate) fn panic(id: Id, err: Box<dyn Any + Send + 'static>) -> JoinError { in panic()
116 pub fn try_into_panic(self) -> Result<Box<dyn Any + Send + 'static>, JoinError> { in try_into_panic() argument
132 impl fmt::Display for JoinError { implementation
152 impl fmt::Debug for JoinError { implementation
166 impl std::error::Error for JoinError {} implementation
Dharness.rs476 ) -> JoinError { in panic_result_to_join_error()
528 ) -> JoinError { in panic_to_error()
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/task/
Djoin_set.rs282 pub async fn join_next(&mut self) -> Option<Result<T, JoinError>> { in join_next() argument
302 pub async fn join_next_with_id(&mut self) -> Option<Result<(Id, T), JoinError>> { in join_next_with_id() argument
309 pub fn try_join_next(&mut self) -> Option<Result<T, JoinError>> { in try_join_next() argument
338 pub fn try_join_next_with_id(&mut self) -> Option<Result<(Id, T), JoinError>> { in try_join_next_with_id() argument
486 pub fn poll_join_next(&mut self, cx: &mut Context<'_>) -> Poll<Option<Result<T, JoinError>>> { in poll_join_next() argument
545 ) -> Poll<Option<Result<(Id, T), JoinError>>> { in poll_join_next_with_id() argument
/aosp_15_r20/external/crosvm/base/src/sys/windows/
H A Dthread.rs36 pub enum JoinError { enum
43 pub fn try_join(self, timeout: Duration) -> Result<T, JoinError> { in try_join() argument
/aosp_15_r20/external/rust/android-crates-io/crates/tokio-util/src/task/
Djoin_map.rs471 pub async fn join_next(&mut self) -> Option<(K, Result<V, JoinError>)> { in join_next() argument