Home
last modified time | relevance | path

Searched defs:Future (Results 1 – 25 of 165) sorted by relevance

1234567

/external/rust/android-crates-io/crates/tonic/src/server/
Dservice.rs15 type Future: Future<Output = Result<Response<Self::Response>, Status>>; typedef
18 fn call(&mut self, request: Request<R>) -> Self::Future; in call()
26 type Future = T::Future; typedef
28 fn call(&mut self, request: Request<M1>) -> Self::Future { in call()
45 type Future: Future<Output = Result<Response<Self::ResponseStream>, Status>>; typedef
48 fn call(&mut self, request: Request<R>) -> Self::Future; in call()
58 type Future = T::Future; typedef
60 fn call(&mut self, request: Request<M1>) -> Self::Future { in call()
74 type Future: Future<Output = Result<Response<Self::Response>, Status>>; typedef
77 fn call(&mut self, request: Request<Streaming<R>>) -> Self::Future; in call()
[all …]
/external/rust/android-crates-io/crates/futures-util/src/future/
Djoin.rs46 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 …]
/external/rust/android-crates-io/crates/tokio/src/net/
Daddr.rs41 type Future = T::Future; typedef
43 fn to_socket_addrs(&self, _: sealed::Internal) -> Self::Future { in to_socket_addrs()
54 type Future = ReadyFuture<Self::Iter>; typedef
56 fn to_socket_addrs(&self, _: sealed::Internal) -> Self::Future { in to_socket_addrs()
68 type Future = ReadyFuture<Self::Iter>; typedef
70 fn to_socket_addrs(&self, _: sealed::Internal) -> Self::Future { in to_socket_addrs()
81 type Future = ReadyFuture<Self::Iter>; typedef
83 fn to_socket_addrs(&self, _: sealed::Internal) -> Self::Future { in to_socket_addrs()
94 type Future = ReadyFuture<Self::Iter>; typedef
96 fn to_socket_addrs(&self, _: sealed::Internal) -> Self::Future { in to_socket_addrs()
[all …]
/external/rust/android-crates-io/crates/hyper/src/service/
Dmake.rs16 type Future: Future<Output = Result<Self::Connection, Self::Error>>; typedef
19 fn make_connection(&mut self, target: Target) -> Self::Future; in make_connection()
31 type Future = S::Future; typedef
37 fn make_connection(&mut self, target: Target) -> Self::Future { in make_connection()
49 type Future: Future<Output = Result<Self::Service, Self::MakeError>>; typedef
64 fn make_service_ref(&mut self, target: &Target) -> Self::Future; in make_service_ref()
81 type Future = F; typedef
89 fn make_service_ref(&mut self, target: &Target) -> Self::Future { in make_service_ref()
142 Ret: Future, in make_service_fn()
161 type Future = Ret; typedef
[all …]
Dhttp.rs21 type Future: Future<Output = Result<Response<Self::ResBody>, Self::Error>>; typedef
27 fn call(&mut self, req: Request<ReqBody>) -> Self::Future; in call()
39 type Future = T::Future; typedef
45 fn call(&mut self, req: Request<B1>) -> Self::Future { in call()
Dutil.rs31 S: Future, in service_fn()
56 type Future = Ret; typedef
62 fn call(&mut self, req: Request<ReqBody>) -> Self::Future { in call()
/external/rust/android-crates-io/crates/tower-service/src/
Dlib.rs319 type Future: Future<Output = Result<Self::Response, Self::Error>>; typedef
355 fn call(&mut self, req: Request) -> Self::Future; in call()
364 type Future = S::Future; typedef
370 fn call(&mut self, request: Request) -> S::Future { in call()
381 type Future = S::Future; typedef
387 fn call(&mut self, request: Request) -> S::Future { in call()
/external/perfetto/include/perfetto/ext/base/threading/
Dfuture.h79 explicit Future(std::unique_ptr<FuturePollable<T>> pollable) in Future() function
84 Future(T item) : pollable_(new ImmediateImpl<T>(std::move(item))) {} in Future() function
92 Future(Status status) : Future(T(std::move(status))) {} in Future() function
97 Future(typename U::value_type val) : Future(T(std::move(val))) {} in Future() function
/external/rust/android-crates-io/crates/tower/tests/retry/
Dmain.rs104 type Future = future::Ready<Self>; typedef
105 fn retry(&self, _: &Req, result: Result<&Res, &Error>) -> Option<Self::Future> { in retry()
122 type Future = future::Ready<Self>; typedef
123 fn retry(&self, _: &Req, result: Result<&Res, &Error>) -> Option<Self::Future> { in retry()
140 type Future = future::Ready<Self>; typedef
141 fn retry(&self, _: &Req, result: Result<&Res, &Error>) -> Option<Self::Future> { in retry()
160 type Future = future::Ready<Self>; typedef
161 fn retry(&self, _: &Req, _: Result<&Res, &Error>) -> Option<Self::Future> { in retry()
/external/rust/android-crates-io/crates/tonic/src/client/
Dservice.rs19 type Future: Future<Output = Result<http::Response<Self::ResponseBody>, Self::Error>>; typedef
29 fn call(&mut self, request: http::Request<ReqBody>) -> Self::Future; in call()
41 type Future = T::Future; typedef
47 fn call(&mut self, request: http::Request<ReqBody>) -> Self::Future { in call()
/external/rust/android-crates-io/crates/tower/src/make/
Dmake_service.rs35 type Future: Future<Output = Result<Self::Service, Self::MakeError>>; typedef
48 fn make_service(&mut self, target: Target) -> Self::Future; in make_service()
148 type Future = M::Future; typedef
154 fn make_service(&mut self, target: Target) -> Self::Future { in make_service()
199 type Future = M::Future; typedef
207 fn call(&mut self, target: Target) -> Self::Future { in call()
240 type Future = M::Future; typedef
248 fn call(&mut self, target: Target) -> Self::Future { in call()
Dmake_connection.rs20 type Future: Future<Output = Result<Self::Connection, Self::Error>>; typedef
26 fn make_connection(&mut self, target: Target) -> Self::Future; in make_connection()
38 type Future = C::Future; typedef
44 fn make_connection(&mut self, target: Target) -> Self::Future { in make_connection()
/external/rust/android-crates-io/crates/tower/src/filter/
Dpredicate.rs9 type Future: Future<Output = Result<Self::Request, BoxError>>; typedef
22 fn check(&mut self, request: Request) -> Self::Future; in check()
46 type Future = futures_util::future::ErrInto<U, BoxError>; typedef
49 fn check(&mut self, request: T) -> Self::Future { in check()
/external/rust/android-crates-io/crates/tower/src/util/
Dfuture_service.rs124 Future(F), enumerator
150 type Future = S::Future; typedef
165 fn call(&mut self, req: R) -> Self::Future { in call()
205 type Future = Ready<Result<Self::Response, Self::Error>>; typedef
211 fn call(&mut self, _req: ()) -> Self::Future { in call()
Dboxed_clone.rs92 type Future = BoxFuture<'static, Result<U, E>>; typedef
100 fn call(&mut self, request: T) -> Self::Future { in call()
115 dyn CloneService<R, Response = Self::Response, Error = Self::Error, Future = Self::Future> in clone_box() argument
126 … ) -> Box<dyn CloneService<R, Response = T::Response, Error = T::Error, Future = T::Future> + Send> in clone_box() argument
/external/rust/android-crates-io/crates/axum/src/handler/
Dmod.rs139 type Future: Future<Output = Response> + Send + 'static; typedef
142 fn call(self, req: Request<B>, state: S) -> Self::Future; in call()
205 type Future = Pin<Box<dyn Future<Output = Response> + Send>>; typedef
207 fn call(self, _req: Request<B>, _state: S) -> Self::Future { in call()
270 type Future = std::future::Ready<Response>; typedef
272 fn call(self, _req: Request<B>, _state: S) -> Self::Future { in call()
323 type Future = future::LayeredFuture<B2, L::Service>; typedef
325 fn call(self, req: Request<B2>, state: S) -> Self::Future { in call()
/external/clang/test/SemaCXX/
Ddecltype.cpp20 struct Future { struct
36 Future<int> f1(42); in rdar16527205() argument
/external/rust/android-crates-io/crates/tokio/src/io/util/
Dwrite_int.rs43 impl<W> Future for $name<W> impl
101 impl<W> Future for $name<W> impl
Dread_int.rs42 impl<R> Future for $name<R> impl
104 impl<R> Future for $name<R> impl
/external/rust/android-crates-io/crates/tower/src/spawn_ready/
Dservice.rs24 Future(tokio::task::JoinHandle<Result<S, BoxError>>), enumerator
52 type Future = ResponseFuture<S::Future, S::Error>; typedef
75 fn call(&mut self, request: Req) -> Self::Future { in call()
/external/rust/android-crates-io/crates/tonic/benches-disabled/benchmarks/compiled_protos/
Dhelloworld.rs115 type Future = Ready<Result<Self::Response, Self::Error>>; typedef
119 fn call(&mut self, _: R) -> Self::Future { in call()
126 type Future = BoxFuture<Self::Response, Self::Error>; typedef
130 fn call(&mut self, req: http::Request<HyperBody>) -> Self::Future { in call()
137 type Future = BoxFuture<tonic::Response<Self::Response>, tonic::Status>; in call() typedef
141 ) -> Self::Future { in call()
/external/rust/android-crates-io/crates/tokio/src/runtime/task/
Draw.rs47 pub(super) fn vtable<T: Future, S: Schedule>() -> &'static Vtable { in vtable()
160 pub(super) fn new<T, S>(task: T, scheduler: S, id: Id) -> RawTask in new()
269 unsafe fn poll<T: Future, S: Schedule>(ptr: NonNull<Header>) { in poll()
283 unsafe fn dealloc<T: Future, S: Schedule>(ptr: NonNull<Header>) { in dealloc()
288 unsafe fn try_read_output<T: Future, S: Schedule>( in try_read_output()
299 unsafe fn drop_join_handle_slow<T: Future, S: Schedule>(ptr: NonNull<Header>) { in drop_join_handle_slow()
304 unsafe fn drop_abort_handle<T: Future, S: Schedule>(ptr: NonNull<Header>) { in drop_abort_handle()
309 unsafe fn shutdown<T: Future, S: Schedule>(ptr: NonNull<Header>) { in shutdown()
/external/rust/android-crates-io/crates/tower/src/retry/
Dpolicy.rs47 type Future: Future<Output = Self>; typedef
61 fn retry(&self, req: &Req, result: Result<&Res, &E>) -> Option<Self::Future>; in retry()
/external/pytorch/torch/futures/
D__init__.py18 class Future(torch._C.Future, Generic[T], metaclass=_PyFutureMeta): class
275 def collect_all(futures: List[Future]) -> Future[List[Future]]:
304 def wait_all(futures: List[Future]) -> List:
/external/rust/android-crates-io/crates/axum/src/routing/
Dnot_found.rs24 type Future = std::future::Ready<Result<Response, Self::Error>>; typedef
31 fn call(&mut self, _req: Request<B>) -> Self::Future { in call()

1234567