Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test-resources/stacktraces/channels/
DtestSendToChannel.txt2 at kotlinx.coroutines.channels.AbstractChannel.cancel(AbstractChannel.kt:630)
9 at kotlinx.coroutines.channels.AbstractChannel.cancel(AbstractChannel.kt:630)
DtestCancelledOffer.txt3 at kotlinx.coroutines.channels.AbstractSendChannel.offer(AbstractChannel.kt:170)
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DRendezvousChannel.kt18 …ndezvousChannel<E>(onUndeliveredElement: OnUndeliveredElement<E>?) : AbstractChannel<E>(onUndelive…
DLinkedListChannel.kt20 …nkedListChannel<E>(onUndeliveredElement: OnUndeliveredElement<E>?) : AbstractChannel<E>(onUndelive…
DConflatedChannel.kt20 …onflatedChannel<E>(onUndeliveredElement: OnUndeliveredElement<E>?) : AbstractChannel<E>(onUndelive…
DAbstractChannel.kt488 internal abstract class AbstractChannel<E>( class
823 private class Itr<E>(@JvmField val channel: AbstractChannel<E>) : ChannelIterator<E> {
961 @JvmField val channel: AbstractChannel<E>, in resumeOnCancellationFun()
DArrayBroadcastChannel.kt210 ) : AbstractChannel<E>(null), ReceiveChannel<E> { in elementAt()
DArrayChannel.kt29 ) : AbstractChannel<E>(onUndeliveredElement) {
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/channels/
DTestChannelKind.kt54 override fun cancel(cause: Throwable?): Boolean = (sub as AbstractChannel).cancelInternal(cause) in toString()