Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DAbstractChannel.kt754 throw recoverStackTrace(value.receiveException) in tryStartBlockUnintercepted()
765 throw recoverStackTrace(value.receiveException) in tryStartBlockUnintercepted()
838 if (result.closeCause != null) throw recoverStackTrace(result.receiveException) in hasNextResult()
858 cont.resumeWithException(result.receiveException) in hasNextSuspend()
872 if (result is Closed<*>) throw recoverStackTrace(result.receiveException) in next()
905 else -> cont.resumeWithException(closed.receiveException) in completeResumeReceive()
946 cont.tryResumeWithException(closed.receiveException) in resumeReceiveClosed()
981 RECEIVE_THROWS_ON_CLOSE -> select.resumeSelectWithException(closed.receiveException) in resumeOnCancellationFun()
986 select.resumeSelectWithException(closed.receiveException) in resumeOnCancellationFun()
1106 …val receiveException: Throwable get() = closeCause ?: ClosedReceiveChannelException(DEFAULT_CLOSE_… constant in Closed