Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/
DReusableCancellableContinuationTest.kt16 testContinuationsCount(10, 1, ::suspendCancellableCoroutineReusable) in <lambda>()
53 suspendCancellableCoroutineReusable<Unit> { in <lambda>()
67 suspendCancellableCoroutineReusable<Unit> { in <lambda>()
80 suspendCancellableCoroutineReusable<Unit> { in <lambda>()
98 suspendCancellableCoroutineReusable<Unit> { in <lambda>()
126 suspendCancellableCoroutineReusable<Unit> { in testDetachedOnCancel()
142 suspendCancellableCoroutineReusable<Unit> { in <lambda>()
161 suspendCancellableCoroutineReusable<Unit> { in <lambda>()
171 suspendCancellableCoroutineReusable<Unit> {} in <lambda>()
DJobStructuredJoinStressTest.kt35 suspendCancellableCoroutineReusable { cont -> in <lambda>()
/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/tailcall/
DSimpleChannel.kt87 override suspend fun suspendReceive(): Int = suspendCancellableCoroutineReusable { in <lambda>()
93 override suspend fun suspendSend(element: Int) = suspendCancellableCoroutineReusable<Unit> { in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DCancellableContinuation.kt324 internal suspend inline fun <T> suspendCancellableCoroutineReusable( in suspendCancellableCoroutineReusable() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/sync/
DSemaphore.kt170 private suspend fun acquireSlowPath() = suspendCancellableCoroutineReusable<Unit> sc@ { cont -> in acquireSlowPath()
DMutex.kt193 …private suspend fun lockSuspend(owner: Any?) = suspendCancellableCoroutineReusable<Unit> sc@ { con… in toString()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DAbstractChannel.kt170 …private suspend fun sendSuspend(element: E): Unit = suspendCancellableCoroutineReusable sc@ { cont… in <lambda>()
570 …vate suspend fun <R> receiveSuspend(receiveMode: Int): R = suspendCancellableCoroutineReusable sc@… in receiveSuspend()
844 … private suspend fun hasNextSuspend(): Boolean = suspendCancellableCoroutineReusable sc@ { cont -> in hasNextSuspend()