Home
last modified time | relevance | path

Searched defs:recoverStackTrace (Results 1 – 4 of 4) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/internal/
DStackTraceRecovery.kt5 internal actual fun <E: Throwable> recoverStackTrace(exception: E, continuation: Continuation<*>): … in recoverStackTrace() method
6 internal actual fun <E: Throwable> recoverStackTrace(exception: E): E = exception in recoverStackTrace() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/jsAndWasmShared/src/internal/
DStackTraceRecovery.kt5 internal actual fun <E: Throwable> recoverStackTrace(exception: E, continuation: Continuation<*>): … in recoverStackTrace() method
6 internal actual fun <E: Throwable> recoverStackTrace(exception: E): E = exception in recoverStackTrace() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DStackTraceRecovery.common.kt14 internal expect fun <E: Throwable> recoverStackTrace(exception: E, continuation: Continuation<*>): E in recoverStackTrace() method
29 internal expect fun <E: Throwable> recoverStackTrace(exception: E): E in recoverStackTrace() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/
DStackTraceRecovery.kt29 internal actual fun <E : Throwable> recoverStackTrace(exception: E): E { in recoverStackTrace() method
56 internal actual inline fun <E : Throwable> recoverStackTrace(exception: E, continuation: Continuati… in recoverStackTrace() method