Home
last modified time | relevance | path

Searched refs:cancelChildren (Results 1 – 17 of 17) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJob.kt519 public fun Job.cancelChildren(cause: CancellationException? = null) { in cancelChildren() method
527 public fun Job.cancelChildren(): Unit = cancelChildren(null) in cancelChildren() method
533 public fun Job.cancelChildren(cause: Throwable? = null) { in cancelChildren() method
627 public fun CoroutineContext.cancelChildren(cause: CancellationException? = null) { in cancelChildren() method
635 public fun CoroutineContext.cancelChildren(): Unit = cancelChildren(null) in cancelChildren() method
650 public fun CoroutineContext.cancelChildren(cause: Throwable? = null) { in cancelChildren() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/sharing/
DShareInFusionTest.kt22 coroutineContext.cancelChildren() in <lambda>()
32 coroutineContext.cancelChildren() in <lambda>()
DShareInBufferTest.kt46 coroutineContext.cancelChildren() // cancels sharing in <lambda>()
DStateInTest.kt28 coroutineContext.cancelChildren() in <lambda>()
DShareInTest.kt185 coroutineContext.cancelChildren() // cancel sharing job in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/guide/
Dexample-channel-07.kt18 coroutineContext.cancelChildren() // cancel all children to let main finish in <lambda>()
Dexample-channel-04.kt18 coroutineContext.cancelChildren() // cancel children coroutines in <lambda>()
Dexample-channel-09.kt19 coroutineContext.cancelChildren() // game over, cancel them in <lambda>()
Dexample-select-03.kt32 coroutineContext.cancelChildren() in <lambda>()
Dexample-channel-05.kt18 coroutineContext.cancelChildren() // cancel all children to let main finish in <lambda>()
Dexample-select-02.kt38 coroutineContext.cancelChildren() in <lambda>()
Dexample-select-01.kt43 coroutineContext.cancelChildren() // cancel fizz & buzz coroutines in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/selects/
DSelectDeadlockStressTest.kt38 coroutineContext.cancelChildren() in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DCoroutinesTest.kt279 parent.cancelChildren() in <lambda>()
/external/kotlinx.coroutines/ui/kotlinx-coroutines-android/animation-app/app/src/main/java/org/jetbrains/kotlinx/animation/
DAnimation.kt85 coroutineContext.cancelChildren() in clearAnimations()
/external/kotlinx.coroutines/kotlinx-coroutines-core/api/
Dkotlinx-coroutines-core.api383 public static final synthetic fun cancelChildren (Lkotlin/coroutines/CoroutineContext;)V
384 …public static final synthetic fun cancelChildren (Lkotlin/coroutines/CoroutineContext;Ljava/lang/T…
385 …public static final fun cancelChildren (Lkotlin/coroutines/CoroutineContext;Ljava/util/concurrent/…
386 public static final synthetic fun cancelChildren (Lkotlinx/coroutines/Job;)V
387 public static final synthetic fun cancelChildren (Lkotlinx/coroutines/Job;Ljava/lang/Throwable;)V
388 …public static final fun cancelChildren (Lkotlinx/coroutines/Job;Ljava/util/concurrent/Cancellation…
389 …public static synthetic fun cancelChildren$default (Lkotlin/coroutines/CoroutineContext;Ljava/lang…
390 …public static synthetic fun cancelChildren$default (Lkotlin/coroutines/CoroutineContext;Ljava/util…
391 …public static synthetic fun cancelChildren$default (Lkotlinx/coroutines/Job;Ljava/lang/Throwable;I…
392 …public static synthetic fun cancelChildren$default (Lkotlinx/coroutines/Job;Ljava/util/concurrent/…
/external/kotlinx.coroutines/
DCHANGES.md809 * `Job.cancelChildren` is now an extension (member is deprecated and hidden).
877 * `Job.attachChild` and `Job.cancelChildren` are introduced.
881 …* `CoroutineContext.cancel` and `CoroutineContext.cancelChildren` extensions are introduced for co…