Searched refs:reqMarshaller (Results 1 – 3 of 3) sorted by relevance
/external/grpc-grpc-java/services/src/test/java/io/grpc/services/ |
D | BinaryLogProviderTest.java | 59 private final InvocationCountMarshaller<String> reqMarshaller = field in BinaryLogProviderTest 75 .newBuilder(reqMarshaller, respMarshaller) 162 assertEquals(0, reqMarshaller.streamInvocations); in wrapChannel_handler() 165 assertEquals(1, reqMarshaller.streamInvocations); in wrapChannel_handler() 166 assertEquals(0, reqMarshaller.parseInvocations); in wrapChannel_handler() 253 assertEquals(0, reqMarshaller.parseInvocations); in wrapMethodDefinition_handler() 256 assertEquals(1, reqMarshaller.parseInvocations); in wrapMethodDefinition_handler() 257 assertEquals(0, reqMarshaller.streamInvocations); in wrapMethodDefinition_handler()
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/ |
D | InternalClientInterceptors.java | 28 final Marshaller<ReqT> reqMarshaller, in wrapClientInterceptor() argument 30 return ClientInterceptors.wrapClientInterceptor(interceptor, reqMarshaller, respMarshaller); in wrapClientInterceptor()
|
D | ClientInterceptors.java | 100 final Marshaller<WReqT> reqMarshaller, in wrapClientInterceptor() argument 107 method.toBuilder(reqMarshaller, respMarshaller).build(); in wrapClientInterceptor() 131 WReqT wReq = reqMarshaller.parse(bytes); in wrapClientInterceptor()
|