Home
last modified time | relevance | path

Searched refs:resumeCancellableWithException (Results 1 – 3 of 3) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DResumeMode.kt33 MODE_CANCELLABLE -> resumeCancellableWithException(exception) in resumeWithExceptionMode()
55 MODE_CANCELLABLE -> intercepted().resumeCancellableWithException(exception) in resumeUninterceptedWithExceptionMode()
DDispatched.kt130 inline fun resumeCancellableWithException(exception: Throwable) { in <lambda>() method
188 internal fun <T> Continuation<T>.resumeCancellableWithException(exception: Throwable) = when (this)… in resumeCancellableWithException() method
189 is DispatchedContinuation -> resumeCancellableWithException(exception) in resumeCancellableWithException()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/selects/
DSelect.kt262 uCont.intercepted().resumeCancellableWithException(exception) in resumeSelectCancellableWithException()