Searched refs:JobSupport (Results 1 – 9 of 9) sorted by relevance
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/ |
D | JobSupport.kt | 28 public open class JobSupport constructor(active: Boolean) : Job, ChildJob, ParentJob, SelectClause0… in <lambda>() class 948 when (val state = this@JobSupport.state) { in <lambda>() 1146 private val parent: JobSupport, in <lambda>() 1160 private val job: JobSupport in <lambda>() 1312 internal open class JobImpl(parent: Job?) : JobSupport(true), CompletableJob { 1352 override fun dispose() = (job as JobSupport).removeNode(this) in dispose() 1399 job: JobSupport, in invoke() 1401 ) : JobNode<JobSupport>(job) { in invoke() 1426 job: JobSupport, in invoke() 1429 ) : JobNode<JobSupport>(job) { in invoke() [all …]
|
D | Job.kt | 534 children.forEach { (it as? JobSupport)?.cancelInternal(cause.orCancellation(this)) } in cancelChildren() 617 val job = this[Job] as? JobSupport ?: return false in cancel() 652 job.children.forEach { (it as? JobSupport)?.cancelInternal(cause.orCancellation(job)) } in cancelChildren()
|
D | CompletableDeferred.kt | 82 ) : JobSupport(true), CompletableDeferred<T>, SelectClause1<T> {
|
D | AbstractCoroutine.kt | 42 ) : JobSupport(active), Job, Continuation<T>, CoroutineScope {
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test-resources/stacktraces/channels/ |
D | testCancelledOffer.txt | 7 at kotlinx.coroutines.JobSupport.cancel(JobSupport.kt:599)
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/ |
D | JobDisposeStressTest.kt | 79 private class TestJob : JobSupport(active = true) in <lambda>()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/debug/internal/ |
D | DebugProbesImpl.kt | 146 …private val Job.debugString: String get() = if (this is JobSupport) toDebugString() else toString() in <lambda>()
|
/external/kotlinx.coroutines/ |
D | CHANGES.md | 915 * `JobSupport` class implementation is optimized (one fewer field). 941 * Internal `select` implementation is refactored to decouple it from `JobSupport` internal class 1111 * Internal `JobSupport` state machine is enhanced to support _new_ (not-started-yet) state.
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/api/ |
D | kotlinx-coroutines-core.api | 1 public abstract class kotlinx/coroutines/AbstractCoroutine : kotlinx/coroutines/JobSupport, kotlin/… 401 public class kotlinx/coroutines/JobSupport : kotlinx/coroutines/ChildJob, kotlinx/coroutines/Job, k… 440 …public static synthetic fun toCancellationException$default (Lkotlinx/coroutines/JobSupport;Ljava/…
|