Home
last modified time | relevance | path

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

/external/rust/crates/futures-util/src/future/
Djoin_all.rs26 pub struct JoinAll<F> struct
33 impl<F> fmt::Debug for JoinAll<F> argument
82 pub fn join_all<I>(i: I) -> JoinAll<I::Item> in join_all()
88 assert_future::<Vec<<I::Item as Future>::Output>, _>(JoinAll { elems: elems.into() }) in join_all()
91 impl<F> Future for JoinAll<F> implementation
118 impl<F: Future> FromIterator<F> for JoinAll<F> { implementation
Dmod.rs80 pub use self::join_all::{join_all, JoinAll};
/external/chromium-trace/catapult/devil/devil/utils/
Dreraiser_thread_unittest.py56 group.JoinAll()
70 group.JoinAll()
82 group.JoinAll()
98 group.JoinAll(watchdog_timer.WatchdogTimer(0.01))
Dreraiser_thread.py183 def JoinAll(self, watcher=None, timeout=None, member in ReraiserThreadGroup
213 self.JoinAll(watcher)
Dtimeout_retry.py161 thread_group.JoinAll(
Dparallelizer.py134 self._objs.JoinAll()
/external/llvm-project/libcxxabi/test/
Dguard_threaded_test.pass.cpp178 void JoinAll() { in JoinAll() function
204 threads.JoinAll(); in test_free_for_all()
238 threads.JoinAll(); in test_waiting_for_init()
272 threads.JoinAll(); in test_aborted_init()
295 threads.JoinAll(); in test_completed_init()
324 test_threads.JoinAll(); in test_impl()
/external/rust/crates/futures/tests/
Djoin_all.rs45 use futures_util::future::{JoinAll,ready}; in join_all_from_iter()
48 || Box::new(vec![ready(1), ready(2)].into_iter().collect::<JoinAll<_>>()), in join_all_from_iter()
Dauto_traits.rs365 assert_impl!(JoinAll<SendFuture<()>>: Send);
366 assert_not_impl!(JoinAll<LocalFuture>: Send);
367 assert_not_impl!(JoinAll<SendFuture>: Send);
368 assert_impl!(JoinAll<SyncFuture<()>>: Sync);
369 assert_not_impl!(JoinAll<LocalFuture>: Sync);
370 assert_not_impl!(JoinAll<SyncFuture>: Sync);
371 assert_impl!(JoinAll<PinnedFuture>: Unpin);
/external/libchrome/base/threading/
Dthread_local_unittest.cc141 tp1.JoinAll(); in TEST()
142 tp2.JoinAll(); in TEST()
Dsimple_thread_unittest.cc215 pool.JoinAll(); in TEST()
230 pool.JoinAll(); in TEST()
Dsimple_thread.h207 void JoinAll();
Dsimple_thread.cc131 void DelegateSimpleThreadPool::JoinAll() { in JoinAll() function in base::DelegateSimpleThreadPool
/external/libchrome/base/
Dlazy_instance_unittest.cc121 pool.JoinAll(); in TEST()