Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DAbstractChannel.kt624 return receiveSuspend(RECEIVE_RESULT) in receiveOrClosed()
728 registerSelectReceiveMode(select, RECEIVE_RESULT, block as suspend (Any?) -> R) in registerSelectClause1()
756 RECEIVE_RESULT -> { in tryStartBlockUnintercepted()
771 if (receiveMode == RECEIVE_RESULT) { in tryStartBlockUnintercepted()
887 RECEIVE_RESULT -> ValueOrClosed.value(value) in resumeValue()
904 receiveMode == RECEIVE_RESULT -> cont.resume(closed.toResult<Any>()) in completeResumeReceive()
972 if (receiveMode == RECEIVE_RESULT) ValueOrClosed.value(value) else value, in resumeOnCancellationFun()
982RECEIVE_RESULT -> block.startCoroutineCancellable(ValueOrClosed.closed<R>(closed.closeCause), sele… in resumeOnCancellationFun()
1006 internal const val RECEIVE_RESULT = 2 constant