Home
last modified time | relevance | path

Searched refs:handleCoroutineException (Results 1 – 23 of 23) sorted by relevance

/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/src/
DAwait.kt221 handleCoroutineException(cont.context, in awaitOne()
320 handleCoroutineException(context,
327 handleCoroutineException(context,
DPublish.kt62 …eContext) -> Unit = { t, ctx -> if (t !is CancellationException) handleCoroutineException(ctx, t) } in t()
249 handleCoroutineException(context, e) in doLockedSignalCompleted()
259 handleCoroutineException(context, cause) in doLockedSignalCompleted()
DReactiveFlow.kt219 handleCoroutineException(coroutineContext, cause) in flowProcessing()
228 handleCoroutineException(coroutineContext, e) in flowProcessing()
/external/kotlinx.coroutines/kotlinx-coroutines-test/common/src/internal/
DReportingSupervisorJob.kt22 handleCoroutineException(this, cause)
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx2/src/
DRxCancellable.kt24 handleCoroutineException(context, cause) in handleUndeliverableException()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-rx3/src/
DRxCancellable.kt24 handleCoroutineException(context, cause) in handleUndeliverableException()
/external/kotlinx.coroutines/integration/kotlinx-coroutines-guava/src/
DListenableFuture.kt140 .onFailure { handleCoroutineException(EmptyCoroutineContext, it) } in asDeferred()
145 .onFailure { handleCoroutineException(EmptyCoroutineContext, it) } in asDeferred()
/external/kotlinx.coroutines/ui/kotlinx-coroutines-android/testdata/
Dr8-test-common.pro8 void handleCoroutineException(...);
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DOnUndeliveredElement.kt32 handleCoroutineException(context, ex) in callUndeliveredElement()
DLimitedDispatcher.kt117 handleCoroutineException(EmptyCoroutineContext, e) in <lambda>()
DDispatchedTask.kt148 handleCoroutineException(this.delegate.context, reason) in handleFatalException()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DCoroutineExceptionHandler.kt20 public fun handleCoroutineException(context: CoroutineContext, exception: Throwable) { in handleCoroutineException() method
DAbstractCoroutine.kt108 handleCoroutineException(context, exception) in afterResume()
DCancellableContinuationImpl.kt234 handleCoroutineException( in <lambda>()
262 handleCoroutineException( in <lambda>()
DBuilders.common.kt194 handleCoroutineException(context, exception) in invoke()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactor/src/
DFlux.kt64 handleCoroutineException(ctx, cause) in ctx()
DMono.kt117 handleCoroutineException(context, cause) in onCancelled()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DProduce.kt148 if (!processed && !handled) handleCoroutineException(context, cause) in onCancelled()
DBroadcast.kt172 if (!processed && !handled) handleCoroutineException(context, cause) in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/channels/
DActor.kt143 handleCoroutineException(context, exception) in handleJobException()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jdk8/src/future/
DFuture.kt142 handleCoroutineException(EmptyCoroutineContext, e) in asDeferred()
/external/kotlinx.coroutines/kotlinx-coroutines-core/api/
Dkotlinx-coroutines-core.api207 …public static final fun handleCoroutineException (Lkotlin/coroutines/CoroutineContext;Ljava/lang/T…
/external/kotlinx.coroutines/
DCHANGES_UP_TO_1.7.md1034 …* Change `handleCoroutineException` contract, so custom exception handlers can't break coroutines …