Home
last modified time | relevance | path

Searched defs:sendPing (Results 1 – 6 of 6) sorted by relevance

/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DKeepAliveManagerTest.java77 Runnable sendPing = sendPingCaptor.getValue(); in sendKeepAlivePings() local
117 Runnable sendPing = sendPingCaptor.getValue(); in keepAlivePingDelayedByIncomingData() local
174 Runnable sendPing = sendPingCaptor.getValue(); in onTransportTerminationCancelsShutdownFuture() local
196 Runnable sendPing = sendPingCaptor.getValue(); in keepAlivePingTimesOut() local
234 Runnable sendPing = sendPingCaptor.getValue(); in transportGoesIdle() local
260 Runnable sendPing = runnableCaptor.getValue(); in transportGoesIdle_doesntCauseIdleWhenEnabled() local
284 Runnable sendPing = sendPingCaptor.getValue(); in transportGoesIdleAfterPingSent() local
350 Runnable sendPing = sendPingCaptor.getValue(); in transportShutsdownAfterPingSent() local
374 Runnable sendPing = sendPingCaptor.getValue(); in pingSentThenIdleThenActiveThenAck() local
/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/ws/
DWebSocket.java49 void sendPing(Buffer payload) throws IOException; in sendPing() method
/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
DRealWebSocket.java138 @Override public void sendPing(Buffer payload) throws IOException { in sendPing() method in RealWebSocket
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DKeepAliveManager.java62 private final Runnable sendPing = new LogExceptionRunnable(new Runnable() { field in KeepAliveManager
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DAbstractNettyHandler.java182 private void sendPing(ChannelHandlerContext ctx) { in sendPing() method in AbstractNettyHandler.FlowControlPinger
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/
DNettyClientHandlerTest.java674 private ChannelFuture sendPing(PingCallback callback) { in sendPing() method in NettyClientHandlerTest