Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/
DStackTraceRecovery.kt34 if (!RECOVER_STACK_TRACES) return exception in recoverStackTrace()
61 if (!RECOVER_STACK_TRACES || continuation !is CoroutineStackFrame) return exception in recoverStackTrace()
153 if (!RECOVER_STACK_TRACES) throw exception in recoverAndThrow()
162 if (!RECOVER_STACK_TRACES) exception else unwrapImpl(exception) in unwrap()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DNonCancellableTest.kt33 if (RECOVER_STACK_TRACES) { in <lambda>()
128 if (RECOVER_STACK_TRACES) { in <lambda>()
DCompletableJobTest.kt60 assertTrue((if (RECOVER_STACK_TRACES) e.cause?.cause else e.cause) is TestException) in <lambda>()
82 assertTrue((if (RECOVER_STACK_TRACES) e.cause?.cause else e.cause) is TestException) in <lambda>()
DSupervisorTest.kt175 val cause = if (RECOVER_STACK_TRACES) e.cause?.cause!! else e.cause in <lambda>()
DCoroutineScopeTest.kt125 if (RECOVER_STACK_TRACES) { in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DExceptions.common.kt32 internal expect val RECOVER_STACK_TRACES: Boolean constant
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/
DExceptions.kt37 internal actual val RECOVER_STACK_TRACES: Boolean = false constant
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/
DDebug.kt81 internal actual val RECOVER_STACK_TRACES = constant
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/
DExceptions.kt42 internal actual val RECOVER_STACK_TRACES: Boolean = false constant
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/selects/
DSelect.kt688 return if (!RECOVER_STACK_TRACES) { in trySelect()