Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DConflatedBroadcastChannel.kt61 …val sendException: Throwable get() = closeCause ?: ClosedSendChannelException(DEFAULT_CLOSE_MESSAG… in <lambda>() constant in kotlinx.coroutines.channels.ConflatedBroadcastChannel.Closed
227 offerInternal(element)?.let { throw it.sendException } in <lambda>()
236 offerInternal(element)?.let { throw it.sendException } in <lambda>()
277 select.resumeSelectWithException(it.sendException) in <lambda>()
DAbstractChannel.kt164 it.addSuppressed(closed.sendException) in <lambda>()
167 return closed.sendException in <lambda>()
210 val sendException = closed.sendException in <lambda>() constant
212 it.addSuppressed(sendException) in <lambda>()
216 resumeWithException(sendException) in <lambda>()
464 select.resumeSelectWithException(closed.sendException) in <lambda>()
1078 … override fun resumeSendClosed(closed: Closed<*>) = cont.resumeWithException(closed.sendException) in tryResumeReceive()
1105 …val sendException: Throwable get() = closeCause ?: ClosedSendChannelException(DEFAULT_CLOSE_MESSAG… constant in Closed