Home
last modified time | relevance | path

Searched defs:RawTask (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/async-task/src/
Draw.rs80 pub(crate) struct RawTask<F, T, S, M> { struct
94 impl<F, T, S, M> Copy for RawTask<F, T, S, M> {} argument
96 impl<F, T, S, M> Clone for RawTask<F, T, S, M> { implementation
102 impl<F, T, S, M> RawTask<F, T, S, M> { implementation
135 impl<F, T, S, M> RawTask<F, T, S, M> impl
/external/rust/crates/tokio/src/runtime/task/
Draw.rs9 pub(crate) struct RawTask { struct
10 ptr: NonNull<Header>,
158 impl RawTask { impl
170 pub(super) unsafe fn from_raw(ptr: NonNull<Header>) -> RawTask { in from_raw()
249 pub(crate) unsafe fn get_queue_next(self) -> Option<RawTask> { in get_queue_next()
261 pub(crate) unsafe fn set_queue_next(self, val: Option<RawTask>) { in set_queue_next()
266 impl Clone for RawTask { implementation
272 impl Copy for RawTask {} implementation
Dharness.rs54 impl RawTask { impl
Dmod.rs353 pub(super) fn as_raw(&self) -> RawTask { in as_raw()
379 pub(crate) fn into_raw(self) -> RawTask { in into_raw()
/external/rust/crates/tokio/src/runtime/scheduler/inject/
Drt_multi_thread.rs69 batch_head: task::RawTask, in push_batch_inner()
70 batch_tail: task::RawTask, in push_batch_inner()