/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/ |
D | NettyChannelBuilder.java | 82 private boolean keepAliveWithoutCalls; field in NettyChannelBuilder 326 public NettyChannelBuilder keepAliveWithoutCalls(boolean enable) { in keepAliveWithoutCalls() method in NettyChannelBuilder 327 keepAliveWithoutCalls = enable; in keepAliveWithoutCalls() 387 maxHeaderListSize, keepAliveTimeNanos, keepAliveTimeoutNanos, keepAliveWithoutCalls, in buildTransportFactory() 495 private final boolean keepAliveWithoutCalls; field in NettyChannelBuilder.NettyTransportFactory 504 long keepAliveTimeNanos, long keepAliveTimeoutNanos, boolean keepAliveWithoutCalls, in NettyTransportFactory() argument 514 this.keepAliveWithoutCalls = keepAliveWithoutCalls; in NettyTransportFactory() 553 keepAliveWithoutCalls, options.getAuthority(), options.getUserAgent(), in newClientTransport()
|
D | NettyClientTransport.java | 81 private final boolean keepAliveWithoutCalls; field in NettyClientTransport 102 boolean keepAliveWithoutCalls, String authority, @Nullable String userAgent, in NettyClientTransport() argument 115 this.keepAliveWithoutCalls = keepAliveWithoutCalls; in NettyClientTransport() 193 keepAliveWithoutCalls);
|
/external/grpc-grpc-java/okhttp/src/main/java/io/grpc/okhttp/ |
D | OkHttpChannelBuilder.java | 160 private boolean keepAliveWithoutCalls; field in OkHttpChannelBuilder 283 public OkHttpChannelBuilder keepAliveWithoutCalls(boolean enable) { in keepAliveWithoutCalls() method in OkHttpChannelBuilder 284 keepAliveWithoutCalls = enable; in keepAliveWithoutCalls() 401 enableKeepAlive, keepAliveTimeNanos, keepAliveTimeoutNanos, keepAliveWithoutCalls, in buildTransportFactory() 479 private final boolean keepAliveWithoutCalls; field in OkHttpChannelBuilder.OkHttpTransportFactory 492 boolean keepAliveWithoutCalls, in OkHttpTransportFactory() argument 504 this.keepAliveWithoutCalls = keepAliveWithoutCalls; in OkHttpTransportFactory() 545 true, keepAliveTimeNanosState.get(), keepAliveTimeoutNanos, keepAliveWithoutCalls); in newClientTransport()
|
D | OkHttpClientTransport.java | 190 private boolean keepAliveWithoutCalls; field in OkHttpClientTransport 288 long keepAliveTimeoutNanos, boolean keepAliveWithoutCalls) { in enableKeepAlive() argument 292 this.keepAliveWithoutCalls = keepAliveWithoutCalls; in enableKeepAlive() 420 keepAliveWithoutCalls); in start()
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/ |
D | ForwardingChannelBuilder.java | 173 public T keepAliveWithoutCalls(boolean enable) { in keepAliveWithoutCalls() method in ForwardingChannelBuilder 174 delegate().keepAliveWithoutCalls(enable); in keepAliveWithoutCalls()
|
D | ManagedChannelBuilder.java | 352 public T keepAliveWithoutCalls(boolean enable) { in keepAliveWithoutCalls() method in ManagedChannelBuilder
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/inprocess/ |
D | InProcessChannelBuilder.java | 127 public InProcessChannelBuilder keepAliveWithoutCalls(boolean enable) { in keepAliveWithoutCalls() method in InProcessChannelBuilder
|
/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/ |
D | AltsChannelBuilder.java | 80 .keepAliveWithoutCalls(true); in AltsChannelBuilder()
|