Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJobSupport.kt1087 private var exceptionsHolder: Any? // Contains null | Throwable | ArrayList | SEALED in <lambda>() variable
1092 val isSealed: Boolean get() = exceptionsHolder === SEALED in <lambda>()
1099 val list = when(val eh = exceptionsHolder) { // volatile read in <lambda>()
1108 exceptionsHolder = SEALED in <lambda>()
1120 when (val eh = exceptionsHolder) { // volatile read in <lambda>()
1121 null -> exceptionsHolder = exception in <lambda>()
1124 exceptionsHolder = allocateList().apply { in <lambda>()
1138 …celling, completing=$isCompleting, rootCause=$rootCause, exceptions=$exceptionsHolder, list=$list]" in <lambda>()