Searched refs:eagAttributes (Results 1 – 6 of 6) sorted by relevance
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
D | ClientTransportFactory.java | 69 private Attributes eagAttributes = Attributes.EMPTY; field in ClientTransportFactory.ClientTransportOptions 84 return eagAttributes; in getEagAttributes() 88 public ClientTransportOptions setEagAttributes(Attributes eagAttributes) { in setEagAttributes() argument 89 Preconditions.checkNotNull(eagAttributes, "eagAttributes"); in setEagAttributes() 90 this.eagAttributes = eagAttributes; in setEagAttributes() 116 return Objects.hashCode(authority, eagAttributes, userAgent, proxyParameters); in hashCode() 126 && this.eagAttributes.equals(that.eagAttributes) in equals()
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/ |
D | ClientTransportFactoryTest.java | 32 private Attributes eagAttributes = field in ClientTransportFactoryTest 49 .setEagAttributes(eagAttributes) in clientTransportOptions_getsMatchSets() 53 assertThat(cto.getEagAttributes()).isEqualTo(eagAttributes); in clientTransportOptions_getsMatchSets() 71 .setEagAttributes(eagAttributes)) in clientTransportOptions_equals() 75 .setEagAttributes(eagAttributes) in clientTransportOptions_equals() 80 .setEagAttributes(eagAttributes) in clientTransportOptions_equals() 85 .setEagAttributes(eagAttributes) in clientTransportOptions_equals()
|
/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/ |
D | GoogleDefaultProtocolNegotiatorTest.java | 51 Attributes eagAttributes = in altsHandler() local 54 when(mockHandler.getEagAttributes()).thenReturn(eagAttributes); in altsHandler() 62 Attributes eagAttributes = Attributes.EMPTY; in tlsHandler() local 64 when(mockHandler.getEagAttributes()).thenReturn(eagAttributes); in tlsHandler()
|
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/ |
D | NettyClientTransport.java | 94 private final Attributes eagAttributes; field in NettyClientTransport 103 Runnable tooManyPingsRunnable, TransportTracer transportTracer, Attributes eagAttributes, in NettyClientTransport() argument 122 this.eagAttributes = Preconditions.checkNotNull(eagAttributes, "eagAttributes"); in NettyClientTransport() 204 eagAttributes, 271 localSocketPicker.createSocketAddress(remoteAddress, eagAttributes);
|
D | NettyClientHandler.java | 105 private final Attributes eagAttributes; field in NettyClientHandler 120 Attributes eagAttributes, in newHandler() argument 144 eagAttributes, in newHandler() 160 Attributes eagAttributes, in newHandler() argument 169 Preconditions.checkNotNull(eagAttributes, "eagAttributes"); in newHandler() 213 eagAttributes, in newHandler() 226 Attributes eagAttributes, in NettyClientHandler() argument 233 this.eagAttributes = eagAttributes; in NettyClientHandler() 437 return eagAttributes; in getEagAttributes()
|
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/ |
D | NettyClientTransportTest.java | 121 private Attributes eagAttributes = Attributes.EMPTY; field in NettyClientTransportTest 525 eagAttributes = Attributes.newBuilder() in getEagAttributes_negotiatorHandler() 532 assertSame(eagAttributes, npn.grpcHandler.getEagAttributes()); in getEagAttributes_negotiatorHandler() 607 new TransportTracer(), eagAttributes, new SocketPicker()); in newTransport()
|