Home
last modified time | relevance | path

Searched refs:binlog (Results 1 – 7 of 7) sorted by relevance

/external/grpc-grpc-java/services/src/test/java/io/grpc/services/
DBinaryLogProviderImplTest.java35 BinaryLogProviderImpl binlog = new BinaryLogProviderImpl(sink, /*configStr=*/ null); in configStrNullTest() local
36 assertNull(binlog.getServerInterceptor("package.service/method")); in configStrNullTest()
37 assertNull(binlog.getClientInterceptor("package.service/method", CallOptions.DEFAULT)); in configStrNullTest()
43 BinaryLogProviderImpl binlog = new BinaryLogProviderImpl(sink, ""); in configStrEmptyTest() local
44 assertNull(binlog.getServerInterceptor("package.service/method")); in configStrEmptyTest()
45 assertNull(binlog.getClientInterceptor("package.service/method", CallOptions.DEFAULT)); in configStrEmptyTest()
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DAbstractManagedChannelImplBuilder.java146 BinaryLog binlog; field in AbstractManagedChannelImplBuilder
337 public final T setBinaryLog(BinaryLog binlog) { in setBinaryLog() argument
338 this.binlog = binlog; in setBinaryLog()
DServerImpl.java115 private final BinaryLog binlog; field in ServerImpl
146 this.binlog = builder.binlog; in ServerImpl()
542 ServerMethodDefinition<?, ?> wMethodDef = binlog == null in startCall()
543 ? interceptedDef : binlog.wrapMethodDefinition(interceptedDef); in startCall()
DAbstractServerImplBuilder.java114 protected BinaryLog binlog; field in AbstractServerImplBuilder
206 this.binlog = binaryLog; in setBinaryLog()
DManagedChannelImpl.java573 if (builder.binlog != null) { in ManagedChannelImpl()
574 channel = builder.binlog.wrapChannel(channel); in ManagedChannelImpl()
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DServerImplTest.java1253 builder.binlog = new BinaryLog() { in binaryLogInstalled()
DManagedChannelImplTest.java266 channelBuilder.binlog = null; in setUp()
2565 channelBuilder.binlog = new BinaryLog() { in binaryLogInstalled()