Home
last modified time | relevance | path

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

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DCompletionState.kt12 internal fun <T> Result<T>.toState( in toState() method
19 internal fun <T> Result<T>.toState(caller: CancellableContinuation<*>): Any? = fold( in toState() method
DAbstractCoroutine.kt111 val state = makeCompletingOnce(result.toState()) in resumeWith()
DCancellableContinuationImpl.kt293 resumeImpl(result.toState(this), resumeMode) in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DDispatchedContinuation.kt180 val state = result.toState() in <lambda>()
201 val state = result.toState(onCancellation) in <lambda>()
/external/grpc-grpc-java/services/src/test/java/io/grpc/services/
DChannelzProtoUtilTest.java345 public void toState() { in toState() method in ChannelzProtoUtilTest
349 ChannelzProtoUtil.toState(connectivityState).getValueDescriptor().getName()); in toState()
351 assertEquals(State.UNKNOWN, ChannelzProtoUtil.toState(null)); in toState()
/external/grpc-grpc-java/services/src/main/java/io/grpc/services/
DChannelzProtoUtil.java370 return ChannelConnectivityState.newBuilder().setState(toState(s)).build(); in toChannelConnectivityState()
399 static State toState(ConnectivityState state) { in toState() method in ChannelzProtoUtil
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/selects/
DSelect.kt296 doResume({ result.toState() }) { in next()