Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-debug/test/
DToStringTest.kt87 checkHierarchy(isCompleting = true, expectedString = expectedString) in <lambda>()
99 checkHierarchy(isCompleting = false, expectedString = expectedString) in <lambda>()
102 … private suspend fun CoroutineScope.checkHierarchy(isCompleting: Boolean, expectedString: String) { in checkHierarchy()
103 val root = launchHierarchy(isCompleting) in checkHierarchy()
116 private fun CoroutineScope.launchHierarchy(isCompleting: Boolean): Job { in CoroutineScope()
137 if (!isCompleting) { in CoroutineScope()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJobSupport.kt209 assert { state.isCompleting } // consistency check -- must be marked as completing in <lambda>()
483 … if (rootCause == null || handler.isHandlerOf<ChildHandleNode>() && !state.isCompleting) { in <lambda>()
695 if (state !is Incomplete || state is Finishing && state.isCompleting) { in <lambda>()
886 if (finishing.isCompleting) return COMPLETING_ALREADY in <lambda>()
888 finishing.isCompleting = true in <lambda>()
1067 state.isCompleting -> "Completing" in <lambda>()
1080 isCompleting: Boolean, in <lambda>()
1083 private val _isCompleting = atomic(isCompleting) in <lambda>()
1084 var isCompleting: Boolean in <lambda>() variable
1145 …"Finishing[cancelling=$isCancelling, completing=$isCompleting, rootCause=$rootCause, exceptions=$e… in <lambda>()