Home
last modified time | relevance | path

Searched refs:getLogId (Results 1 – 25 of 27) sorted by relevance

12

/external/grpc-grpc-java/services/src/test/java/io/grpc/services/
DChannelzTestHelper.java78 public InternalLogId getLogId() { in getLogId() method in ChannelzTestHelper.TestSocket
85 .add("logId", getLogId()) in toString()
108 public InternalLogId getLogId() { in getLogId() method in ChannelzTestHelper.TestListenSocket
115 .add("logId", getLogId()) in toString()
137 public InternalLogId getLogId() { in getLogId() method in ChannelzTestHelper.TestServer
144 .add("logId", getLogId()) in toString()
171 public InternalLogId getLogId() { in getLogId() method in ChannelzTestHelper.TestChannel
178 .add("logId", getLogId()) in toString()
DChannelzServiceTest.java78 assertChannelNotFound(root.getLogId().getId()); in getChannel()
86 getChannelHelper(root.getLogId().getId())); in getChannel()
89 assertChannelNotFound(root.getLogId().getId()); in getChannel()
95 assertSubchannelNotFound(subchannel.getLogId().getId()); in getSubchannel()
103 getSubchannelHelper(subchannel.getLogId().getId())); in getSubchannel()
106 assertSubchannelNotFound(subchannel.getLogId().getId()); in getSubchannel()
133 assertSocketNotFound(socket.getLogId().getId()); in getSocket()
141 getSocketHelper(socket.getLogId().getId())); in getSocket()
144 assertSocketNotFound(socket.getLogId().getId()); in getSocket()
DChannelzProtoUtilTest.java100 .setChannelId(channel.getLogId().getId())
121 .setSubchannelId(subchannel.getLogId().getId())
142 .setServerId(server.getLogId().getId())
282 .setSocketId(socket.getLogId().getId())
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DManagedChannelImpl.java322 public InternalLogId getLogId() { in getLogId() method in ManagedChannelImpl
376 logger.log(Level.FINE, "[{0}] Exiting idle mode", getLogId()); in exitIdleMode()
391 logger.log(Level.FINE, "[{0}] Entering idle mode", getLogId()); in enterIdleMode()
627 logger.log(Level.FINE, "[{0}] Created with target {1}", new Object[] {getLogId(), target}); in ManagedChannelImpl()
681 logger.log(Level.FINE, "[{0}] shutdown() called", getLogId()); in shutdown()
711 logger.log(Level.FINE, "[{0}] Shutting down", getLogId()); in shutdown()
722 logger.log(Level.FINE, "[{0}] shutdownNow() called", getLogId()); in shutdownNow()
845 logger.log(Level.FINE, "[{0}] Terminated", getLogId()); in maybeTerminateChannel()
1089 new Object[] {getLogId(), internalSubchannel.getLogId(), addressGroups}); in createSubchannel()
1261 new Object[]{getLogId(), servers, config}); in onAddresses()
[all …]
DForwardingConnectionClientTransport.java58 public InternalLogId getLogId() { in getLogId() method in ForwardingConnectionClientTransport
59 return delegate().getLogId(); in getLogId()
DInternalSubchannel.java245 new Object[] {logId, transport.getLogId(), address}); in startNewTransport()
491 public InternalLogId getLogId() { in getLogId() method in InternalSubchannel
549 new Object[] {logId, transport.getLogId(), address}); in transportReady()
583 new Object[] {logId, transport.getLogId(), address, s}); in transportShutdown()
619 new Object[] {logId, transport.getLogId(), address}); in transportTerminated()
DFailingClientTransport.java69 public InternalLogId getLogId() { in getLogId() method in FailingClientTransport
DGrpcUtil.java692 public InternalLogId getLogId() { in getTransportFromPickResult() method
693 return transport.getLogId(); in getTransportFromPickResult()
DDelayedClientTransport.java342 public InternalLogId getLogId() { in getLogId() method in DelayedClientTransport
DOobChannel.java308 public InternalLogId getLogId() { in getLogId() method in OobChannel
/external/grpc-grpc-java/core/src/main/java/io/grpc/
DInternalWithLogId.java33 InternalLogId getLogId(); in getLogId() method
DInternalChannelz.java238 T prev = map.put(object.getLogId().getId(), object); in add()
1096 return withLogId.getLogId().getId(); in id()
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DManagedChannelImplTest.java332 assertNotNull(channelz.getRootChannel(channel.getLogId().getId())); in channelzMembership()
333 assertFalse(channelz.containsSubchannel(channel.getLogId())); in channelzMembership()
336 assertNull(channelz.getRootChannel(channel.getLogId().getId())); in channelzMembership()
337 assertFalse(channelz.containsSubchannel(channel.getLogId())); in channelzMembership()
343 assertNotNull(channelz.getRootChannel(channel.getLogId().getId())); in channelzMembership_subchannel()
348 assertNull(channelz.getRootChannel(subchannel.getInternalSubchannel().getLogId().getId())); in channelzMembership_subchannel()
349 assertTrue(channelz.containsSubchannel(subchannel.getInternalSubchannel().getLogId())); in channelzMembership_subchannel()
356 assertTrue(channelz.containsClientSocket(transportInfo.transport.getLogId())); in channelzMembership_subchannel()
360 assertFalse(channelz.containsClientSocket(transportInfo.transport.getLogId())); in channelzMembership_subchannel()
363 assertTrue(channelz.containsSubchannel(subchannel.getInternalSubchannel().getLogId())); in channelzMembership_subchannel()
[all …]
DTestUtils.java78 when(mockTransport.getLogId()).thenReturn(InternalLogId.allocate("mocktransport")); in captureTransports()
DInternalSubchannelTest.java818 assertNotNull(internalSubchannel.getLogId()); in logId()
982 assertTrue(channelz.containsClientSocket(t0.transport.getLogId())); in channelzMembership()
984 assertFalse(channelz.containsClientSocket(t0.transport.getLogId())); in channelzMembership()
997 assertEquals(actualTransport.transport.getLogId(), registeredTransport.getLogId()); in channelzStatContainsTransport()
DServerImplTest.java1282 assertTrue(builder.channelz.containsServer(server.getLogId())); in channelz_membership()
1284 assertFalse(builder.channelz.containsServer(server.getLogId())); in channelz_membership()
1396 public InternalLogId getLogId() { in getLogId() method in ServerImplTest.SimpleServerTransport
/external/grpc-grpc-java/services/src/main/java/io/grpc/services/
DChannelzProtoUtil.java94 .setChannelId(obj.getLogId().getId()) in toChannelRef()
102 .setSubchannelId(obj.getLogId().getId()) in toSubchannelRef()
110 .setServerId(obj.getLogId().getId()) in toServerRef()
118 .setSocketId(obj.getLogId().getId()) in toSocketRef()
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DNettyServer.java305 public InternalLogId getLogId() { in getLogId() method in NettyServer
393 public InternalLogId getLogId() { in getLogId() method in NettyServer.ListenSocket
DNettyServerTransport.java165 public InternalLogId getLogId() { in getLogId() method in NettyServerTransport
DNettyClientTransport.java314 public InternalLogId getLogId() {
/external/grpc-grpc-java/grpclb/src/main/java/io/grpc/grpclb/
DGrpclbLoadBalancer.java75 public InternalLogId getLogId() { in getLogId() method in GrpclbLoadBalancer
/external/grpc-grpc-java/core/src/jmh/java/io/grpc/internal/
DChannelzBenchmark.java143 public InternalLogId getLogId() { in create() method
/external/grpc-grpc-java/cronet/src/main/java/io/grpc/cronet/
DCronetClientTransport.java234 public InternalLogId getLogId() {
/external/grpc-grpc-java/core/src/test/java/io/grpc/
DInternalChannelzTest.java313 public InternalLogId getLogId() { in create() method
/external/grpc-grpc-java/core/src/main/java/io/grpc/inprocess/
DInProcessTransport.java226 public InternalLogId getLogId() {

12