/external/rust/crates/async-task/src/ |
D | runnable.rs | 45 pub fn spawn<F, S>(future: F, schedule: S) -> (Runnable, Task<F::Output>) in spawn() 87 pub fn spawn_local<F, S>(future: F, schedule: S) -> (Runnable, Task<F::Output>) in spawn_local() 174 pub unsafe fn spawn_unchecked<F, S>(future: F, schedule: S) -> (Runnable, Task<F::Output>) in spawn_unchecked() 177 S: Fn(Runnable), in spawn_unchecked() 233 pub struct Runnable { struct 238 unsafe impl Send for Runnable {} implementation 239 unsafe impl Sync for Runnable {} implementation 242 impl std::panic::UnwindSafe for Runnable {} implementation 244 impl std::panic::RefUnwindSafe for Runnable {} implementation 246 impl Runnable { implementation [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/ |
D | Runnable.common.kt | 10 public expect interface Runnable { interface 21 public expect inline fun Runnable(crossinline block: () -> Unit): Runnable method
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/ |
D | Runnable.kt | 10 public actual typealias Runnable = java.lang.Runnable typealias 16 public actual inline fun Runnable(crossinline block: () -> Unit): Runnable = in Runnable() method
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/ |
D | Runnable.kt | 10 public actual interface Runnable { interface 21 public actual inline fun Runnable(crossinline block: () -> Unit): Runnable = in run() method
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/ |
D | Runnable.kt | 10 public actual interface Runnable { interface 21 public actual inline fun Runnable(crossinline block: () -> Unit): Runnable = in run() method
|
/external/crosvm/common/cros_async/src/ |
D | queue.rs | 25 pub fn push_back(&self, runnable: Runnable) { in push_back() 30 pub fn pop_front(&self) -> Option<Runnable> { in pop_front()
|
/external/crosvm/cros_async/src/ |
D | queue.rs | 25 pub fn push_back(&self, runnable: Runnable) { in push_back() 30 pub fn pop_front(&self) -> Option<Runnable> { in pop_front()
|
/external/webrtc/sdk/android/api/org/webrtc/ |
D | ScreenCapturerAndroid.java | 125 ThreadUtils.invokeAtFrontUninterruptibly(surfaceTextureHelper.getHandler(), new Runnable() { in stopCapture() method 180 ThreadUtils.invokeAtFrontUninterruptibly(surfaceTextureHelper.getHandler(), new Runnable() { in changeCaptureFormat() method
|
/external/apache-commons-bcel/src/test/java/org/apache/bcel/data/ |
D | AnonymousClassTest.java | 25 new Runnable() in foo() method
|
/external/crosvm/devices/src/irqchip/ |
D | mod.rs | 169 Runnable, enumerator
|
/external/minijail/rust/minijail/src/ |
D | lib.rs | 108 trait Runnable { interface 112 impl Runnable for &Path { impl
|
/external/crosvm/common/cros_asyncv2/src/blocking/ |
D | pool.rs | 104 fn schedule(self: &Arc<Inner>, runnable: Runnable) { in schedule()
|
/external/crosvm/cros_async/src/blocking/ |
D | pool.rs | 106 fn schedule(self: &Arc<Inner>, runnable: Runnable) { in schedule()
|
/external/crosvm/common/cros_async/src/blocking/ |
D | pool.rs | 106 fn schedule(self: &Arc<Inner>, runnable: Runnable) { in schedule()
|
/external/crosvm/hypervisor/src/ |
D | lib.rs | 437 Runnable, enumerator
|