Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/test_/
DTestCoroutineContext.kt195 private fun processNextEvent(): Long { in <lambda>() method in kotlinx.coroutines.test.TestCoroutineContext
242 override fun processNextEvent() = this@TestCoroutineContext.processNextEvent() in <lambda>() method in kotlinx.coroutines.test.TestCoroutineContext.Dispatcher
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DEventLoop.common.kt53 public open fun processNextEvent(): Long { in <lambda>() method in kotlinx.coroutines.EventLoop
224 while (processNextEvent() <= 0) { /* spin */ } in shutdown()
252 override fun processNextEvent(): Long { in processNextEvent() method in kotlinx.coroutines.EventLoopImplBase
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/
DEventLoop.kt49 ThreadLocalEventLoop.currentOrNull()?.processNextEvent() ?: Long.MAX_VALUE
DBuilders.kt84 val parkNanos = eventLoop?.processNextEvent() ?: Long.MAX_VALUE in joinBlocking()
DDefaultExecutor.kt69 var parkNanos = processNextEvent() in invokeOnTimeout()
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/
DBuilders.kt65 val parkNanos = eventLoop?.processNextEvent() ?: Long.MAX_VALUE in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/
DVirtualTime.kt25 val delayNanos = ThreadLocalEventLoop.currentOrNull()?.processNextEvent() in <lambda>()