Home
last modified time | relevance | path

Searched defs:coroutineName (Results 1 – 5 of 5) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/
DCoroutineContext.kt51 internal actual val CoroutineContext.coroutineName: String? get() { constant
54 val coroutineName = this[CoroutineName]?.name ?: "coroutine" constant
67 val coroutineName = context[CoroutineName]?.name ?: "coroutine" in toString() constant
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DAbstractCoroutine.kt123 val coroutineName = context.coroutineName ?: return super.nameString() in nameString() constant
DCoroutineContext.common.kt23 internal expect val CoroutineContext.coroutineName: String? constant
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/
DCoroutineContext.kt53 internal actual val CoroutineContext.coroutineName: String? get() = null // not supported on JS constant
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/
DCoroutineContext.kt42 internal actual val CoroutineContext.coroutineName: String? get() = null // not supported on native constant