Home
last modified time | relevance | path

Searched refs:ignoreCoroutinesWithEmptyContext (Results 1 – 3 of 3) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-debug/src/
DDebugProbes.kt83 public var ignoreCoroutinesWithEmptyContext: Boolean variable
84 get() = DebugProbesImpl.ignoreCoroutinesWithEmptyContext
86 DebugProbesImpl.ignoreCoroutinesWithEmptyContext = value
/external/kotlinx.coroutines/kotlinx-coroutines-debug/test/
DStandardBuildersDebugTest.kt23 DebugProbes.ignoreCoroutinesWithEmptyContext = false in <lambda>()
29 DebugProbes.ignoreCoroutinesWithEmptyContext = true in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/debug/internal/
DDebugProbesImpl.kt45 public var ignoreCoroutinesWithEmptyContext: Boolean = true in <lambda>() variable
426 …if (ignoreCoroutinesWithEmptyContext && frame.context === EmptyCoroutineContext) return // See ign… in <lambda>()
480 …if (ignoreCoroutinesWithEmptyContext && completion.context === EmptyCoroutineContext) return compl… in <lambda>()