Home
last modified time | relevance | path

Searched refs:addSuppressedThrowable (Results 1 – 10 of 10) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DExceptions.common.kt30 internal expect fun Throwable.addSuppressedThrowable(other: Throwable) method
DCoroutineExceptionHandler.kt39 addSuppressedThrowable(originalException) in handlerException()
DJobSupport.kt282 rootCause.addSuppressedThrowable(unwrapped) in <lambda>()
370 exception?.apply { addSuppressedThrowable(ex) } ?: run { in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/
DExceptions.kt39 internal actual inline fun Throwable.addSuppressedThrowable(other: Throwable) { /* empty */ } in toString() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/
DExceptions.kt39 internal actual inline fun Throwable.addSuppressedThrowable(other: Throwable) { /* empty */ } in toString() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DOnUndeliveredElement.kt22 undeliveredElementException.addSuppressedThrowable(ex) in <lambda>()
DDispatchedTask.kt140 exception.addSuppressedThrowable(finallyException) in handleFatalException()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/
DExceptions.kt74 internal actual inline fun Throwable.addSuppressedThrowable(other: Throwable) = method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DEmitters.kt210 if (cause !== null && cause !== e) e.addSuppressedThrowable(cause) in invokeSafely()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DChannels.common.kt141 exception.addSuppressedThrowable(e) in consumesAll()