Searched refs:toState (Results 1 – 6 of 6) sorted by relevance
12 internal fun <T> Result<T>.toState( in toState() method19 internal fun <T> Result<T>.toState(caller: CancellableContinuation<*>): Any? = fold( in toState() method
100 val state = makeCompletingOnce(result.toState()) in resumeWith()
368 resumeImpl(result.toState(this), resumeMode) in <lambda>()
196 val state = result.toState() in <lambda>()217 val state = result.toState(onCancellation) in <lambda>()
345 public void toState() { in toState() method in ChannelzProtoUtilTest349 ChannelzProtoUtil.toState(connectivityState).getValueDescriptor().getName()); in toState()351 assertEquals(State.UNKNOWN, ChannelzProtoUtil.toState(null)); in toState()
370 return ChannelConnectivityState.newBuilder().setState(toState(s)).build(); in toChannelConnectivityState()399 static State toState(ConnectivityState state) { in toState() method in ChannelzProtoUtil