Home
last modified time | relevance | path

Searched refs:MODE_UNDISPATCHED (Results 1 – 4 of 4) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DResumeMode.kt13 @PublishedApi internal const val MODE_UNDISPATCHED = 3 // when the thread is right, but need to m… constant
24 MODE_UNDISPATCHED -> (this as DispatchedContinuation).resumeUndispatched(value) in resumeMode()
35MODE_UNDISPATCHED -> (this as DispatchedContinuation).resumeUndispatchedWithException(exception) in resumeWithExceptionMode()
46 MODE_UNDISPATCHED -> withCoroutineContext(context, null) { resume(value) } in resumeUninterceptedMode()
57 MODE_UNDISPATCHED -> withCoroutineContext(context, null) { resumeWithException(exception) } in resumeUninterceptedWithExceptionMode()
DCancellableContinuationImpl.kt332 resumeImpl(value, if (dc?.dispatcher === this) MODE_UNDISPATCHED else resumeMode) in <lambda>()
337 …mpl(CompletedExceptionally(exception), if (dc?.dispatcher === this) MODE_UNDISPATCHED else resumeM… in <lambda>()
DBuilders.common.kt207 override val defaultResumeMode: Int get() = MODE_UNDISPATCHED
DDispatched.kt49 resume(delegate, MODE_UNDISPATCHED) in resumeUnconfined()