Home
last modified time | relevance | path

Searched defs:Output (Results 1 – 25 of 128) sorted by relevance

123456

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/pariter/
H A Dsum.rs23 P::Item: Add<Output = P::Item> + Sum + Send, in sum()
36 type Output = P::Item; typedef
37 fn consume(&self, par_iter: P) -> Self::Output { in consume()
40 fn combine(a: Self::Output, b: Self::Output) -> Self::Output { in combine()
H A Dfor_each.rs41 type Output = (); typedef
42 fn consume(&self, par_iter: P) -> Self::Output { in consume()
46 fn combine(_a: Self::Output, _b: Self::Output) -> Self::Output {} in combine()
H A Dmod.rs87 ) -> Pin<Box<dyn std::future::Future<Output = Result<(), ScheduleError>> + Send + 'a>> in for_each()
99 ) -> Pin<Box<dyn std::future::Future<Output = Result<Self::Item, ScheduleError>> + Send + 'a>> in sum()
102 Self::Item: Add<Output = Self::Item> + Sum + Send, in sum()
112 ) -> Pin<Box<dyn std::future::Future<Output = Result<C::Output, ScheduleError>> + Send + 'a>> in drive()
125 type Output: Send; typedef
128 fn consume(&self, par_iter: P) -> Self::Output; in consume()
131 fn combine(a: Self::Output, b: Self::Output) -> Self::Output; in combine()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/io/
H A Dwrite_task.rs56 type Output = io::Result<usize>; typedef
58 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
96 type Output = io::Result<usize>; typedef
98 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
138 type Output = io::Result<()>; typedef
140 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
175 type Output = io::Result<()>; typedef
177 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
200 type Output = io::Result<()>; typedef
202 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
H A Dseek_task.rs42 type Output = io::Result<u64>; typedef
44 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
H A Dread_task.rs59 type Output = io::Result<usize>; typedef
61 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
137 type Output = io::Result<usize>; typedef
139 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
209 type Output = io::Result<usize>; typedef
211 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
244 type Output = io::Result<()>; typedef
328 type Output = io::Result<usize>; typedef
330 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
364 type Output = io::Result<usize>; typedef
[all …]
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/task/
H A Dyield_now.rs42 type Output = (); typedef
45 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
67 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/
H A Dtry_join3.rs34 F1: Future<Output = Result<R1, E>>, in try_join3()
35 F2: Future<Output = Result<R2, E>>, in try_join3()
36 F3: Future<Output = Result<R3, E>>, in try_join3()
81 pub(crate) fn take_output(self: Pin<&mut Self>) -> F::Output { in take_output()
94 type Output = Result<(), E>; typedef
96 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/
H A Dfutures.rs32 type Output = T; typedef
34 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/
H A Dcore.rs30 pub(crate) async fn core<P, C>(par_iter: P, consumer: C) -> Result<C::Output, ScheduleError> in core()
79 ) -> Result<C::Output, ScheduleError> in recur()
131 ) -> JoinHandle<Result<C::Output, ScheduleError>> in spawn_task()
156 ) -> Result<C::Output, ScheduleError> in recur_ffrt()
193 ) -> JoinHandle<Result<C::Output, ScheduleError>> in spawn_task_ffrt()
/ohos5.0/foundation/communication/ipc/interfaces/innerkits/rust/src/ipc_async/
H A Dmod.rs44 Fut: Future<Output = IpcResult<B>>, in spawn()
55 fn spawn<T, R>(task: T) -> JoinHandle<R> in spawn()
70 fn block_on<F: Future>(future: F) -> F::Output; in block_on()
H A Dipc_ylong.rs30 Fut: Future<Output = IpcResult<B>>, in spawn()
67 fn spawn<T, R>(task: T) -> JoinHandle<R> in spawn()
85 fn block_on<F: Future>(future: F) -> F::Output { in block_on()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/
H A Dtask_cancel.rs72 type Output = u8; typedef
74 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
H A Dtimeout.rs41 type Output = Result<Response, HttpClientError>; typedef
43 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/executor/
H A Dmod.rs191 pub fn spawn<T, R>(&self, task: T) -> JoinHandle<R> in spawn()
200 pub(crate) fn spawn_with_attr<T, R>(&self, task: T, builder: &TaskBuilder) -> JoinHandle<R> in spawn_with_attr()
279 T: Future<Output = R>, in block_on()
287 T: Future<Output = R>, in block_on_inner()
327 T: Future<Output = R>, in block_on_inner()
/ohos5.0/docs/en/device-dev/kernel/
H A Dkernel-small-debug-shell-file-lsfd.md24 ## Output section
H A Dkernel-small-debug-shell-cmd-cpup.md38 ## Output section
H A Dkernel-small-debug-shell-cmd-dmesg.md54 ## Output section
H A Dkernel-small-debug-shell-cmd-exec.md33 ## Output section
H A Dkernel-small-debug-shell-cmd-free.md39 ## Output section
H A Dkernel-small-debug-shell-cmd-help.md29 ## Output section
H A Dkernel-small-debug-shell-cmd-hwi.md31 ## Output section
H A Dkernel-small-debug-shell-cmd-log.md53 ## Output section
H A Dkernel-small-debug-shell-cmd-memcheck.md33 ## Output section
H A Dkernel-small-debug-shell-cmd-oom.md50 ## Output section

123456