Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DBuilders.common.kt210 private const val UNDECIDED = 0 constant
223 private val _decision = atomic(UNDECIDED)
228 UNDECIDED -> if (this._decision.compareAndSet(UNDECIDED, SUSPENDED)) return true in trySuspend()
238 UNDECIDED -> if (this._decision.compareAndSet(UNDECIDED, RESUMED)) return true in tryResume()
DCancellableContinuationImpl.kt13 private const val UNDECIDED = 0 in <lambda>() constant
53 private val _decision = atomic(UNDECIDED) in <lambda>()
149 UNDECIDED -> if (this._decision.compareAndSet(UNDECIDED, SUSPENDED)) return true in <lambda>()
159 UNDECIDED -> if (this._decision.compareAndSet(UNDECIDED, RESUMED)) return true in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/selects/
DSelect.kt188 private val UNDECIDED: Any = Symbol("UNDECIDED") constant
206 private val _result = atomic<Any?>(UNDECIDED) in getStackTraceElement()
236 result === UNDECIDED -> if (_result.compareAndSet(UNDECIDED, value())) return in getStackTraceElement()
270 if (result === UNDECIDED) { in getResult()
271 if (_result.compareAndSet(UNDECIDED, COROUTINE_SUSPENDED)) return COROUTINE_SUSPENDED in getResult()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/
DLockFreeLinkedList.kt13 internal const val UNDECIDED = 0 in <lambda>() constant
223 if (!_next.compareAndSet(next, condAdd)) return UNDECIDED in <lambda>()