Home
last modified time | relevance | path

Searched refs:CoroutineStackFrame (Results 1 – 25 of 465) sorted by relevance

12345678910>>...19

/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/debug/internal/
H A DDebugProbesImpl.kt13 import kotlin.coroutines.jvm.internal.CoroutineStackFrame in <lambda>()
71 …private val callerInfoCache = ConcurrentWeakMap<CoroutineStackFrame, DebugCoroutineInfoImpl>(weakR… in <lambda>()
184 val lastObservedFrames = ArrayList<CoroutineStackFrame?>(size) in <lambda>()
427 val stackFrame = frame as? CoroutineStackFrame ?: return in <lambda>()
438 private fun updateRunningState(frame: CoroutineStackFrame, state: String) { in <lambda>()
460 private tailrec fun CoroutineStackFrame.realCaller(): CoroutineStackFrame? { in <lambda>()
470 … private fun Continuation<*>.owner(): CoroutineOwner<*>? = (this as? CoroutineStackFrame)?.owner() in <lambda>()
472 private tailrec fun CoroutineStackFrame.owner(): CoroutineOwner<*>? = in <lambda>()
535 ) : Continuation<T> by delegate, CoroutineStackFrame { in <lambda>()
538 override val callerFrame: CoroutineStackFrame? in <lambda>()
H A DDebugCoroutineInfoImpl.kt116 lastObservedFrame = frame as? CoroutineStackFrame in updateState()
137 public var _lastObservedFrame: WeakReference<CoroutineStackFrame>? = null
138 internal var lastObservedFrame: CoroutineStackFrame?
150 var frame: CoroutineStackFrame? = lastObservedFrame ?: return emptyList() in lastObservedStackTrace()
165 …ate tailrec suspend fun SequenceScope<StackTraceElement>.yieldFrames(frame: CoroutineStackFrame?) { in yieldFrames()
H A DStackTraceFrame.kt10 override val callerFrame: CoroutineStackFrame?,
13 ) : CoroutineStackFrame {
H A DDebugCoroutineInfo.kt18 …internal val creationStackBottom: CoroutineStackFrame? = source.creationStackBottom // field is us…
23 …public val lastObservedFrame: CoroutineStackFrame? = source.lastObservedFrame // field is used as …
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/
H A DStackTraceRecovery.kt57 if (!RECOVER_STACK_TRACES || continuation !is CoroutineStackFrame) return exception in recoverStackTrace()
61 private fun <E : Throwable> recoverFromStackFrame(exception: E, continuation: CoroutineStackFrame):… in recoverFromStackFrame()
151 if (it !is CoroutineStackFrame) throw exception in recoverAndThrow()
177 private fun createStackTrace(continuation: CoroutineStackFrame): ArrayDeque<StackTraceElement> { in createStackTrace()
183 last = (last as? CoroutineStackFrame)?.callerFrame ?: break in createStackTrace()
202 internal actual typealias CoroutineStackFrame = kotlin.coroutines.jvm.internal.CoroutineStackFrame typealias
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-debug/src/
H A DCoroutineInfo.kt24 private val creationStackBottom: CoroutineStackFrame? = delegate.creationStackBottom
38 private val lastObservedFrame: CoroutineStackFrame? = delegate.lastObservedFrame
46 var frame: CoroutineStackFrame? = lastObservedFrame ?: return emptyList() in lastObservedStackTrace()
61 …ate tailrec suspend fun SequenceScope<StackTraceElement>.yieldFrames(frame: CoroutineStackFrame?) { in yieldFrames()
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
H A DScopes.kt14 ) : AbstractCoroutine<T>(context, true, true), CoroutineStackFrame {
16 final override val callerFrame: CoroutineStackFrame? get() = uCont as? CoroutineStackFrame
H A DDispatchedContinuation.kt17 ) : DispatchedTask<T>(MODE_UNINITIALIZED), CoroutineStackFrame, Continuation<T> by continuation { in <lambda>()
21 override val callerFrame: CoroutineStackFrame? get() = continuation as? CoroutineStackFrame in <lambda>()
H A DStackTraceRecovery.common.kt44 internal expect interface CoroutineStackFrame { in recoverStackTrace() interface
45 public val callerFrame: CoroutineStackFrame? in recoverStackTrace()
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/
H A DCoroutineContext.kt5 import kotlin.coroutines.jvm.internal.CoroutineStackFrame in <lambda>()
121 if (this !is CoroutineStackFrame) return null in updateUndispatchedCompletion()
141 internal tailrec fun CoroutineStackFrame.undispatchedCompletion(): UndispatchedCoroutine<*>? { in undispatchedCompletion()
143 val completion: CoroutineStackFrame = when (this) { in undispatchedCompletion()
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/flow/internal/
H A DSafeCollector.kt36 … FlowCollector<T>, ContinuationImpl(NoOpContinuation, EmptyCoroutineContext), CoroutineStackFrame { in <lambda>()
38 override val callerFrame: CoroutineStackFrame? get() = completion_ as? CoroutineStackFrame in <lambda>()
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jsAndWasmShared/src/internal/
H A DStackTraceRecovery.kt13 internal actual interface CoroutineStackFrame { in recoverStackTrace() interface
14 public actual val callerFrame: CoroutineStackFrame? in recoverStackTrace()
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/internal/
H A DStackTraceRecovery.kt13 internal actual interface CoroutineStackFrame { in recoverStackTrace() interface
14 public actual val callerFrame: CoroutineStackFrame? in recoverStackTrace()
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/
H A DChannelFlow.kt230 ) : Continuation<T>, CoroutineStackFrame {
232 override val callerFrame: CoroutineStackFrame?
233 get() = uCont as? CoroutineStackFrame
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
H A DCancellableContinuationImpl.kt32 ) : DispatchedTask<T>(resumeMode), CancellableContinuation<T>, CoroutineStackFrame, Waiter { in <lambda>()
159 public override val callerFrame: CoroutineStackFrame? in <lambda>()
160 get() = delegate as? CoroutineStackFrame in <lambda>()
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/api/
H A Dkotlinx-coroutines-core.api54 … kotlinx/coroutines/DispatchedTask, kotlin/coroutines/jvm/internal/CoroutineStackFrame, kotlinx/co…
60 public fun getCallerFrame ()Lkotlin/coroutines/jvm/internal/CoroutineStackFrame;
923 public final fun getLastObservedFrame ()Lkotlin/coroutines/jvm/internal/CoroutineStackFrame;
952 …routineOwner : kotlin/coroutines/Continuation, kotlin/coroutines/jvm/internal/CoroutineStackFrame {
954 public fun getCallerFrame ()Lkotlin/coroutines/jvm/internal/CoroutineStackFrame;
973 …nx/coroutines/debug/internal/StackTraceFrame : kotlin/coroutines/jvm/internal/CoroutineStackFrame {
975 public fun getCallerFrame ()Lkotlin/coroutines/jvm/internal/CoroutineStackFrame;
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.coroutines/kotlinx_coroutines-host/linux_glibc_common/kotlin_headers/
Dkotlinx_coroutines-host.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.coroutines__linux_glibc_common__kotlinx_coroutines- ...
/aosp_15_r20/external/kotlinc/lib/
HDkotlinx-coroutines-core-jvm.jarMETA-INF/ META-INF/MANIFEST.MF kotlinx/ kotlinx/coroutines/ kotlinx/ ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.coroutines/kotlinx_coroutines-host/linux_glibc_common/local-javac-header/
Dkotlinx_coroutines-host.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.coroutines__linux_glibc_common__kotlinx_coroutines- ...
/aosp_15_r20/out/soong/.intermediates/external/kotlinx.coroutines/kotlinx_coroutines-host/linux_glibc_common/kotlin/
Dkotlinx_coroutines-host.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.coroutines__linux_glibc_common__kotlinx_coroutines- ...
/aosp_15_r20/out/soong/.intermediates/packages/modules/Bluetooth/service/service-bluetooth/android_common_apex33/
Dproguard_dictionary6326 73:73:kotlin.coroutines.jvm.internal.CoroutineStackFrame getCallerFrame() -> getCallerFrame
6378 kotlin.coroutines.jvm.internal.CoroutineStackFrame -> kotlin.coroutines.jvm.internal.CoroutineStack…
6379 # {"id":"sourceFile","fileName":"CoroutineStackFrame.kt"}
8250 160:160:kotlin.coroutines.jvm.internal.CoroutineStackFrame getCallerFrame() -> getCallerFrame
8541 …hedCoroutine undispatchedCompletion(kotlin.coroutines.jvm.internal.CoroutineStackFrame) -> undispa…
8542 …hedCoroutine undispatchedCompletion(kotlin.coroutines.jvm.internal.CoroutineStackFrame) -> undispa…
8543 …hedCoroutine undispatchedCompletion(kotlin.coroutines.jvm.internal.CoroutineStackFrame) -> undispa…
8544 …hedCoroutine undispatchedCompletion(kotlin.coroutines.jvm.internal.CoroutineStackFrame) -> undispa…
8545 …hedCoroutine undispatchedCompletion(kotlin.coroutines.jvm.internal.CoroutineStackFrame) -> undispa…
10758 38:38:kotlin.coroutines.jvm.internal.CoroutineStackFrame getCallerFrame() -> getCallerFrame
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/apps/QuickSearchBox/QuickSearchBox/android_common/
Dproguard_dictionary6179 73:73:kotlin.coroutines.jvm.internal.CoroutineStackFrame getCallerFrame() -> getCallerFrame
6227 kotlin.coroutines.jvm.internal.CoroutineStackFrame -> kotlin.coroutines.jvm.internal.CoroutineStack…
6228 # {"id":"sourceFile","fileName":"CoroutineStackFrame.kt"}
7310 …hedCoroutine undispatchedCompletion(kotlin.coroutines.jvm.internal.CoroutineStackFrame) -> undispa…
7311 …hedCoroutine undispatchedCompletion(kotlin.coroutines.jvm.internal.CoroutineStackFrame) -> undispa…
7312 …hedCoroutine undispatchedCompletion(kotlin.coroutines.jvm.internal.CoroutineStackFrame) -> undispa…
7313 …hedCoroutine undispatchedCompletion(kotlin.coroutines.jvm.internal.CoroutineStackFrame) -> undispa…
7314 …hedCoroutine undispatchedCompletion(kotlin.coroutines.jvm.internal.CoroutineStackFrame) -> undispa…
8702 21:21:kotlin.coroutines.jvm.internal.CoroutineStackFrame getCallerFrame() -> getCallerFrame
/aosp_15_r20/out/soong/.intermediates/frameworks/base/libs/dream/lowlight/LowLightDreamLib/android_common/turbine-combined/
DLowLightDreamLib.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/androidx.arch. ...
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/utils/SystemUI-shared-utils/android_common/turbine-combined/
DSystemUI-shared-utils.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__linux_glibc_common__kotlinx_atomicfu. ...
/aosp_15_r20/out/soong/.intermediates/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint2/lib/FingerprintManagerInteractor/android_common/turbine-combined/
DFingerprintManagerInteractor.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/external__kotlinx.atomicfu__linux_glibc_common__kotlinx_atomicfu. ...

12345678910>>...19