/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/iter/pariter/ |
H A D | sum.rs | 23 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 D | for_each.rs | 41 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 D | mod.rs | 87 ) -> 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 D | write_task.rs | 56 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 D | seek_task.rs | 42 type Output = io::Result<u64>; typedef 44 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll()
|
H A D | read_task.rs | 59 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 D | yield_now.rs | 42 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 D | try_join3.rs | 34 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 D | futures.rs | 32 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 D | core.rs | 30 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 D | mod.rs | 44 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 D | ipc_ylong.rs | 30 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 D | task_cancel.rs | 72 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 D | timeout.rs | 41 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 D | mod.rs | 191 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 D | kernel-small-debug-shell-file-lsfd.md | 24 ## Output section
|
H A D | kernel-small-debug-shell-cmd-cpup.md | 38 ## Output section
|
H A D | kernel-small-debug-shell-cmd-dmesg.md | 54 ## Output section
|
H A D | kernel-small-debug-shell-cmd-exec.md | 33 ## Output section
|
H A D | kernel-small-debug-shell-cmd-free.md | 39 ## Output section
|
H A D | kernel-small-debug-shell-cmd-help.md | 29 ## Output section
|
H A D | kernel-small-debug-shell-cmd-hwi.md | 31 ## Output section
|
H A D | kernel-small-debug-shell-cmd-log.md | 53 ## Output section
|
H A D | kernel-small-debug-shell-cmd-memcheck.md | 33 ## Output section
|
H A D | kernel-small-debug-shell-cmd-oom.md | 50 ## Output section
|