Searched refs:MODE_UNDISPATCHED (Results 1 – 4 of 4) sorted by relevance
13 @PublishedApi internal const val MODE_UNDISPATCHED = 3 // when the thread is right, but need to m… constant24 MODE_UNDISPATCHED -> (this as DispatchedContinuation).resumeUndispatched(value) in resumeMode()35 … MODE_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()
332 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>()
207 override val defaultResumeMode: Int get() = MODE_UNDISPATCHED
49 resume(delegate, MODE_UNDISPATCHED) in resumeUnconfined()