Home
last modified time | relevance | path

Searched refs:completionCause (Results 1 – 7 of 7) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-test/common/src/
DTestBuilders.kt337 … val completionCause = if (scope.isCancelled) scope.tryGetCompletionCause() else null in runTest() constant
339 if (completionCause == null) in runTest()
343 if (completionCause != null && activeChildren.isEmpty()) { in runTest()
540 val completionCause = if (coroutine.isCancelled) coroutine.tryGetCompletionCause() else null in handleTimeout() constant
542 if (completionCause == null) in handleTimeout()
546 if (completionCause != null && activeChildren.isEmpty()) { in handleTimeout()
553 completionCause?.let { cause -> error.addSuppressed(cause) } in handleTimeout()
DTestScope.kt304 fun tryGetCompletionCause(): Throwable? = completionCause in tryGetCompletionCause()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx3/src/
DRxObservable.kt125 doLockedSignalCompleted(completionCause, completionCauseHandled) in doLockedNext()
158 doLockedSignalCompleted(completionCause, completionCauseHandled) in unlockAndCheckCompleted()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/src/
DRxObservable.kt125 doLockedSignalCompleted(completionCause, completionCauseHandled) in doLockedNext()
158 doLockedSignalCompleted(completionCause, completionCauseHandled) in unlockAndCheckCompleted()
/external/kotlinx.coroutines/kotlinx-coroutines-test/jvm/src/migration/
DTestBuildersDeprecated.kt229 fun tryGetCompletionCause(): Throwable? = completionCause in runTest()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/src/
DPublish.kt229 doLockedSignalCompleted(completionCause, completionCauseHandled) in unlockAndCheckCompleted()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJobSupport.kt434 protected val completionCause: Throwable? in <lambda>() constant