Home
last modified time | relevance | path

Searched refs:cancelInternal (Results 1 – 10 of 10) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DChannelCoroutine.kt19 cancelInternal(defaultCancellationException()) in <lambda>()
24 cancelInternal(defaultCancellationException()) in <lambda>()
29 cancelInternal(cause ?: defaultCancellationException()) in <lambda>()
32 override fun cancelInternal(cause: Throwable) { in <lambda>() method
DBroadcast.kt138 cancelInternal(cause ?: defaultCancellationException()) in <lambda>()
143 cancelInternal(cause ?: defaultCancellationException()) in <lambda>()
146 override fun cancelInternal(cause: Throwable) { in <lambda>() method
DArrayBroadcastChannel.kt81 cancelInternal(cause) in cancel()
84 cancelInternal(cause) in cancel()
87 private fun cancelInternal(cause: Throwable?): Boolean = in cancelInternal() method
89 for (sub in subscribers) sub.cancelInternal(cause) in cancelInternal()
DAbstractChannel.kt635 cancelInternal(cause) in cancel()
638 cancelInternal(cause ?: CancellationException("$classSimpleName was cancelled")) in cancel()
642 internal fun cancelInternal(cause: Throwable?): Boolean = in cancelInternal() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJob.kt534 children.forEach { (it as? JobSupport)?.cancelInternal(cause.orCancellation(this)) } in cancelChildren()
618 job.cancelInternal(cause.orCancellation(job)) in cancel()
652 job.children.forEach { (it as? JobSupport)?.cancelInternal(cause.orCancellation(job)) } in cancelChildren()
DJobSupport.kt614 cancelInternal(cause ?: defaultCancellationException()) in <lambda>()
623 cancelInternal(cause?.toCancellationException() ?: defaultCancellationException()) in <lambda>()
628 public open fun cancelInternal(cause: Throwable) { in <lambda>() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/
DJoinStrTest.kt81 (exceptionalJob as AbstractCoroutine<*>).cancelInternal(TestException1()) in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/exceptions/
DSuppressionTests.kt56 coroutine.cancelInternal(ArithmeticException()) in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/channels/
DTestChannelKind.kt54 override fun cancel(cause: Throwable?): Boolean = (sub as AbstractChannel).cancelInternal(cause) in toString()
/external/kotlinx.coroutines/kotlinx-coroutines-core/api/
Dkotlinx-coroutines-core.api409 public fun cancelInternal (Ljava/lang/Throwable;)V