Home
last modified time | relevance | path

Searched refs:threadContextElements (Results 1 – 7 of 7) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/
DThreadContext.kt59 internal actual fun threadContextElements(context: CoroutineContext): Any = context.fold(0, countAl… in threadContextElements() method
65 val countOrElement = countOrElement ?: threadContextElements(context) in threadContextElements()
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/internal/
DThreadContext.kt9 internal actual fun threadContextElements(context: CoroutineContext): Any = 0 method
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/internal/
DThreadContext.kt9 internal actual fun threadContextElements(context: CoroutineContext): Any = 0 method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DThreadContext.common.kt9 internal expect fun threadContextElements(context: CoroutineContext): Any method
DDispatchedContinuation.kt28 internal val countOrElement = threadContextElements(context) in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/
DChannelFlow.kt211 …private val countOrElement = threadContextElements(emitContext) // precompute for fast withContext…
222 countOrElement: Any = threadContextElements(newContext), // can be precomputed for speed in emit()
DCombine.kt125 val cnt = threadContextElements(scopeContext) in zipImpl()