/external/rust/crates/futures-util/src/future/ |
D | join.rs | 46 impl<$($Fut: Future),*> Future for $Join<$($Fut),*> { impl 113 Fut1: Future, in join() 114 Fut2: Future, in join() 142 Fut1: Future, in join3() 143 Fut2: Future, in join3() 144 Fut3: Future, in join3() 174 Fut1: Future, in join4() 175 Fut2: Future, in join4() 176 Fut3: Future, in join4() 177 Fut4: Future, in join4() [all …]
|
D | abortable.rs | 14 Fut: Future, in abortable()
|
D | try_maybe_done.rs | 16 Future(/* #[pin] */ Fut), enumerator
|
D | maybe_done.rs | 16 Future(/* #[pin] */ Fut), enumerator
|
/external/rust/crates/tokio/src/net/ |
D | addr.rs | 42 type Future = T::Future; typedef 44 fn to_socket_addrs(&self, _: sealed::Internal) -> Self::Future { in to_socket_addrs() 55 type Future = ReadyFuture<Self::Iter>; typedef 57 fn to_socket_addrs(&self, _: sealed::Internal) -> Self::Future { in to_socket_addrs() 69 type Future = ReadyFuture<Self::Iter>; typedef 71 fn to_socket_addrs(&self, _: sealed::Internal) -> Self::Future { in to_socket_addrs() 82 type Future = ReadyFuture<Self::Iter>; typedef 84 fn to_socket_addrs(&self, _: sealed::Internal) -> Self::Future { in to_socket_addrs() 95 type Future = ReadyFuture<Self::Iter>; typedef 97 fn to_socket_addrs(&self, _: sealed::Internal) -> Self::Future { in to_socket_addrs() [all …]
|
/external/rust/crates/tokio/src/runtime/task/ |
D | waker.rs | 20 T: Future, in waker_ref() 70 unsafe fn clone_waker<T, S>(ptr: *const ()) -> RawWaker in clone_waker() 83 unsafe fn drop_waker<T, S>(ptr: *const ()) in drop_waker() 94 unsafe fn wake_by_val<T, S>(ptr: *const ()) in wake_by_val() 106 unsafe fn wake_by_ref<T, S>(ptr: *const ()) in wake_by_ref() 117 fn raw_waker<T, S>(header: *const Header) -> RawWaker in raw_waker()
|
D | raw.rs | 33 pub(super) fn vtable<T: Future, S: Schedule>() -> &'static Vtable { in vtable() 45 pub(super) fn new<T, S>(task: T, scheduler: S) -> RawTask in new() 111 unsafe fn poll<T: Future, S: Schedule>(ptr: NonNull<Header>) { in poll() 116 unsafe fn dealloc<T: Future, S: Schedule>(ptr: NonNull<Header>) { in dealloc() 121 unsafe fn try_read_output<T: Future, S: Schedule>( in try_read_output() 132 unsafe fn drop_join_handle_slow<T: Future, S: Schedule>(ptr: NonNull<Header>) { in drop_join_handle_slow() 137 unsafe fn remote_abort<T: Future, S: Schedule>(ptr: NonNull<Header>) { in remote_abort() 142 unsafe fn shutdown<T: Future, S: Schedule>(ptr: NonNull<Header>) { in shutdown()
|
/external/crosvm/cros_async/src/ |
D | lib.rs | 454 F1: Future, in complete2() 455 F2: Future, in complete2() 475 F1: Future, in complete3() 476 F2: Future, in complete3() 477 F3: Future, in complete3() 503 F1: Future, in complete4() 504 F2: Future, in complete4() 505 F3: Future, in complete4() 506 F4: Future, in complete4() 535 F1: Future, in complete5() [all …]
|
D | complete.rs | 53 impl<$($Fut),*> Future for $Complete<$($Fut),*> impl
|
D | select.rs | 46 impl<$($Fut: Future + Unpin),*> Future for $Select<$($Fut),*> { impl
|
/external/crosvm/common/cros_async/src/ |
D | lib.rs | 452 F1: Future, in complete2() 453 F2: Future, in complete2() 473 F1: Future, in complete3() 474 F2: Future, in complete3() 475 F3: Future, in complete3() 501 F1: Future, in complete4() 502 F2: Future, in complete4() 503 F3: Future, in complete4() 504 F4: Future, in complete4() 533 F1: Future, in complete5() [all …]
|
D | complete.rs | 53 impl<$($Fut),*> Future for $Complete<$($Fut),*> impl
|
D | select.rs | 46 impl<$($Fut: Future + Unpin),*> Future for $Select<$($Fut),*> { impl
|
/external/clang/test/SemaCXX/ |
D | decltype.cpp | 20 struct Future { struct 36 Future<int> f1(42); in rdar16527205() argument
|
/external/rust/crates/tokio/src/io/util/ |
D | write_int.rs | 44 impl<W> Future for $name<W> impl 102 impl<W> Future for $name<W> impl
|
D | read_int.rs | 43 impl<R> Future for $name<R> impl 105 impl<R> Future for $name<R> impl
|
/external/rust/crates/tokio/src/time/ |
D | timeout.rs | 52 pub fn timeout<T>(duration: Duration, future: T) -> Timeout<T> in timeout() 100 pub fn timeout_at<T>(deadline: Instant, future: T) -> Timeout<T> in timeout_at()
|
/external/llvm/lib/Support/ |
D | ThreadPool.cpp | 88 auto Future = PackagedTask.get_future(); in asyncImpl() local 142 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl() local
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | ThreadPool.cpp | 84 auto Future = PackagedTask.get_future(); in asyncImpl() local 133 auto Future = std::async(std::launch::deferred, std::move(Task)).share(); in asyncImpl() local
|
/external/crosvm/docs/book/src/appendix/ |
D | rust-vmm.md | 24 ## Future section in Background
|
/external/rust/crates/futures-util/src/future/future/ |
D | mod.rs | 194 Fut: Future, in then() 309 Self::Output: Future, in flatten()
|
/external/grpc-grpc/src/python/grpcio/grpc/framework/foundation/ |
D | future.py | 47 class Future(six.with_metaclass(abc.ABCMeta)): class
|
/external/rust/crates/tokio/src/future/ |
D | maybe_done.rs | 12 Future(Fut), enumerator
|
/external/python/python-api-core/google/api_core/future/ |
D | base.py | 20 class Future(object, metaclass=abc.ABCMeta): class
|
/external/python/cpython3/Lib/asyncio/ |
D | futures.py | 30 class Future: class 423 Future = _CFuture = _asyncio.Future variable
|