/external/grpc-grpc-java/core/src/test/java/io/grpc/ |
D | MethodDescriptorTest.java | 45 .setRequestMarshaller(new StringMarshaller()) in createMethodDescriptor() 46 .setResponseMarshaller(new StringMarshaller()) in createMethodDescriptor() 60 .setRequestMarshaller(new StringMarshaller()) in idempotent() 61 .setResponseMarshaller(new StringMarshaller()) in idempotent() 80 .setRequestMarshaller(new StringMarshaller()) in safe() 81 .setResponseMarshaller(new StringMarshaller()) in safe() 98 .setRequestMarshaller(new StringMarshaller()) in safeAndNonUnary() 99 .setResponseMarshaller(new StringMarshaller()) in safeAndNonUnary() 111 .setRequestMarshaller(new StringMarshaller()) in sampledToLocalTracing() 112 .setResponseMarshaller(new StringMarshaller()) in sampledToLocalTracing() [all …]
|
D | StringMarshaller.java | 27 public class StringMarshaller implements MethodDescriptor.Marshaller<String> { class 28 public static StringMarshaller INSTANCE = new StringMarshaller();
|
D | IntegerMarshaller.java | 27 return StringMarshaller.INSTANCE.stream(value.toString()); in stream() 32 return Integer.valueOf(StringMarshaller.INSTANCE.parse(stream)); in parse()
|
D | ServerServiceDefinitionTest.java | 38 .setRequestMarshaller(StringMarshaller.INSTANCE)
|
/external/grpc-grpc-java/services/src/test/java/io/grpc/services/ |
D | BinaryLogProviderTest.java | 63 return StringMarshaller.INSTANCE; 171 StringMarshaller.INSTANCE.parse(new ByteArrayInputStream(binlogReq.get(0)))); in wrapChannel_handler() 174 StringMarshaller.INSTANCE.parse(new ByteArrayInputStream(serializedReq.get(0)))); in wrapChannel_handler() 254 onServerMessageHelper(wListener, StringMarshaller.INSTANCE.stream(expectedRequest)); in wrapMethodDefinition_handler() 262 StringMarshaller.INSTANCE.parse(new ByteArrayInputStream(binlogReq.get(0)))); in wrapMethodDefinition_handler() 408 private static class StringMarshaller implements MethodDescriptor.Marshaller<String> { 409 public static final StringMarshaller INSTANCE = new StringMarshaller(); 431 return StringMarshaller.INSTANCE.stream(value.toString()); 436 return Integer.valueOf(StringMarshaller.INSTANCE.parse(stream));
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/Interceptors/ |
D | ClientInterceptorTest.cs | 58 … MockServiceHelper.ServiceName, "Unary", Marshallers.StringMarshaller, Marshallers.StringMarshalle… in AddRequestHeaderInClientInterceptor() 87 … MockServiceHelper.ServiceName, "Unary", Marshallers.StringMarshaller, Marshallers.StringMarshalle… in CheckInterceptorOrderInClientInterceptors() 125 …ceHelper.ServiceName, "ClientStreaming", Marshallers.StringMarshaller, Marshallers.StringMarshalle… in CountNumberOfRequestsInClientInterceptors()
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/Internal/ |
D | AsyncCallServerTest.cs | 52 Marshallers.StringMarshaller.Serializer, Marshallers.StringMarshaller.Deserializer, in Init()
|
D | AsyncCallTest.cs | 44 …ng, string>(channel, "someMethod", null, Marshallers.StringMarshaller, Marshallers.StringMarshalle… in Init() 643 return Marshallers.StringMarshaller.Serializer("response1"); in CreateResponsePayload()
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | Marshaller.cs | 82 public static Marshaller<string> StringMarshaller property in Grpc.Core.Marshallers
|
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/ |
D | NettyClientTransportTest.java | 647 .setRequestMarshaller(StringMarshaller.INSTANCE) 648 .setResponseMarshaller(StringMarshaller.INSTANCE) 785 private static final class StringMarshaller implements Marshaller<String> { 786 static final StringMarshaller INSTANCE = new StringMarshaller();
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | MockServiceHelper.cs | 59 marshaller = marshaller ?? Marshallers.StringMarshaller; in MockServiceHelper()
|
D | ClientServerTest.cs | 316 Marshallers.StringMarshaller, in UnknownMethodHandler() 317 Marshallers.StringMarshaller); in UnknownMethodHandler()
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/ |
D | CallCredentialsApplyingTest.java | 40 import io.grpc.StringMarshaller; 85 .setRequestMarshaller(new StringMarshaller())
|
D | ManagedChannelImplIdlenessTest.java | 53 import io.grpc.StringMarshaller; 93 .setRequestMarshaller(new StringMarshaller())
|
D | DelayedClientTransportTest.java | 45 import io.grpc.StringMarshaller; 90 .setRequestMarshaller(new StringMarshaller())
|
D | ServerImplTest.java | 76 import io.grpc.StringMarshaller; 116 private static final StringMarshaller STRING_MARSHALLER = StringMarshaller.INSTANCE;
|
D | RetriableStreamTest.java | 54 import io.grpc.StringMarshaller; 122 .setRequestMarshaller(new StringMarshaller()) 123 .setResponseMarshaller(new StringMarshaller())
|
D | ManagedChannelImplTest.java | 90 import io.grpc.StringMarshaller; 142 .setRequestMarshaller(new StringMarshaller())
|
/external/grpc-grpc-java/testing/src/main/java/io/grpc/internal/testing/ |
D | AbstractTransportTest.java | 154 .setRequestMarshaller(StringMarshaller.INSTANCE) 155 .setResponseMarshaller(StringMarshaller.INSTANCE) 2033 private static class StringMarshaller implements MethodDescriptor.Marshaller<String> { class in AbstractTransportTest 2034 public static final StringMarshaller INSTANCE = new StringMarshaller();
|