Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJob.kt520 public fun Job.cancelChildren(cause: CancellationException? = null) { in cancelChildren() method
528 public fun Job.cancelChildren(): Unit = cancelChildren(null) in cancelChildren() method
534 public fun Job.cancelChildren(cause: Throwable? = null) { in cancelChildren() method
628 public fun CoroutineContext.cancelChildren(cause: CancellationException? = null) { in cancelChildren() method
636 public fun CoroutineContext.cancelChildren(): Unit = cancelChildren(null) in cancelChildren() method
651 public fun CoroutineContext.cancelChildren(cause: Throwable? = null) { in cancelChildren() method