Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/scheduling/
DDispatcher.kt44 private val schedulerName: String = "CoroutineScheduler" in toString() constant in kotlinx.coroutines.scheduling.ExperimentalCoroutineDispatcher
49 schedulerName: String = DEFAULT_SCHEDULER_NAME in toString()
50 ) : this(corePoolSize, maxPoolSize, IDLE_WORKER_KEEP_ALIVE_NS, schedulerName) in toString()
124 …teScheduler() = CoroutineScheduler(corePoolSize, maxPoolSize, idleWorkerKeepAliveNs, schedulerName) in toString()
DCoroutineScheduler.kt96 @JvmField val schedulerName: String = DEFAULT_SCHEDULER_NAME in <lambda>() constant in kotlinx.coroutines.scheduling.CoroutineScheduler
392 throw RejectedExecutionException("$schedulerName was terminated") in <lambda>()
549 return "$schedulerName@$hexAddress[" + in <lambda>()
589 name = "$schedulerName-worker-${if (index == 0) "TERMINATED" else index.toString()}" in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/scheduling/
DSharingWorkerClassTest.kt16 val dispatcher = ExperimentalCoroutineDispatcher(1, schedulerName = "first") in <lambda>()
17 val dispatcher2 = ExperimentalCoroutineDispatcher(1, schedulerName = "second") in <lambda>()