Home
last modified time | relevance | path

Searched refs:isDispatchNeeded (Results 1 – 21 of 21) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/
DDispatchers.kt19 …override fun isDispatchNeeded(context: CoroutineContext): Boolean = delegate.isDispatchNeeded(cont… method in kotlinx.coroutines.NativeMainDispatcher
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DCoroutineDispatcherOperatorFunInvokeTest.kt69 override fun isDispatchNeeded(context: CoroutineContext): Boolean { in String() method
70 return dispatcher.isDispatchNeeded(context) in String()
DTestBase.common.kt74 override fun isDispatchNeeded(context: CoroutineContext): Boolean = in wrapperDispatcher() method
75 dispatcher.isDispatchNeeded(context) in wrapperDispatcher()
DImmediateYieldTest.kt30 override fun isDispatchNeeded(context: CoroutineContext): Boolean = false in isDispatchNeeded() method in kotlinx.coroutines.ImmediateYieldTest
/external/kotlinx.coroutines/kotlinx-coroutines-test/src/internal/
DMainTestDispatcher.kt39 …override fun isDispatchNeeded(context: CoroutineContext): Boolean = delegate.isDispatchNeeded(cont… in isDispatchNeeded() method in kotlinx.coroutines.test.internal.TestMainDispatcher
/external/kotlinx.coroutines/kotlinx-coroutines-test/test/
DTestDispatchersTest.kt70 override fun isDispatchNeeded(context: CoroutineContext): Boolean { in <lambda>() method in kotlinx.coroutines.test.TestDispatchersTest.ImmediateDispatcher
79 override fun isDispatchNeeded(context: CoroutineContext): Boolean { in <lambda>() method in kotlinx.coroutines.test.TestDispatchersTest.RegularDispatcher
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/
DVirtualTime.kt52 …override fun isDispatchNeeded(context: CoroutineContext): Boolean = originalDispatcher.isDispatchN… in isDispatchNeeded() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DUnconfined.kt14 override fun isDispatchNeeded(context: CoroutineContext): Boolean = false in isDispatchNeeded() method
DYield.kt34 if (cont.dispatcher.isDispatchNeeded(context)) { in <lambda>()
DCoroutineDispatcher.kt62 public open fun isDispatchNeeded(context: CoroutineContext): Boolean = true in isDispatchNeeded() method in kotlinx.coroutines.CoroutineDispatcher
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DDispatchedContinuation.kt181 if (dispatcher.isDispatchNeeded(context)) { in <lambda>()
202 if (dispatcher.isDispatchNeeded(context)) { in <lambda>()
DDispatchedTask.kt158 if (dispatcher.isDispatchNeeded(context)) { in dispatch()
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/test/
DDelayExceptionTest.kt12 override fun isDispatchNeeded(context: CoroutineContext): Boolean = true in <lambda>() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/
DDispatchers.kt21 override fun isDispatchNeeded(context: CoroutineContext): Boolean = !invokeImmediately method in kotlinx.coroutines.JsMainDispatcher
/external/kotlinx.coroutines/ui/kotlinx-coroutines-swing/src/
DSwingDispatcher.kt68 …override fun isDispatchNeeded(context: CoroutineContext): Boolean = !SwingUtilities.isEventDispatc… in createDispatcher() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/
DMainDispatchers.kt90 override fun isDispatchNeeded(context: CoroutineContext): Boolean = in isDispatchNeeded() method in kotlinx.coroutines.internal.MissingMainCoroutineDispatcher
/external/kotlinx.coroutines/ui/kotlinx-coroutines-javafx/src/
DJavaFxDispatcher.kt71 …override fun isDispatchNeeded(context: CoroutineContext): Boolean = !Platform.isFxApplicationThrea… in createDispatcher() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/
DFailingCoroutinesMachineryTest.kt82 override fun isDispatchNeeded(context: CoroutineContext): Boolean { in <lambda>() method
/external/kotlinx.coroutines/ui/kotlinx-coroutines-android/src/
DHandlerDispatcher.kt127 override fun isDispatchNeeded(context: CoroutineContext): Boolean { in isDispatchNeeded() method in kotlinx.coroutines.android.HandlerContext
/external/kotlinx.coroutines/
DCHANGES.md190 * `CoroutineDispatcher.isDispatchNeeded` is promoted to stable API (#1014).
1137 …for later in this thread or thread pool. Correspondingly, `CoroutineDispatcher.isDispatchNeeded` f…
/external/kotlinx.coroutines/kotlinx-coroutines-core/api/
Dkotlinx-coroutines-core.api161 public fun isDispatchNeeded (Lkotlin/coroutines/CoroutineContext;)Z