Home
last modified time | relevance | path

Searched refs:marshallerWithRecursionLimit (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc-java/protobuf/src/main/java/io/grpc/protobuf/
DProtoUtils.java68 public static <T extends Message> Marshaller<T> marshallerWithRecursionLimit(T defaultInstance, in marshallerWithRecursionLimit() method in ProtoUtils
70 return ProtoLiteUtils.marshallerWithRecursionLimit(defaultInstance, recursionLimit); in marshallerWithRecursionLimit()
/external/grpc-grpc-java/protobuf-lite/src/test/java/io/grpc/protobuf/lite/
DProtoLiteUtilsTest.java244 () -> ProtoLiteUtils.marshallerWithRecursionLimit(null, 10) in testNullDefaultInstance()
250 Marshaller<SimpleRecursiveMessage> marshaller = ProtoLiteUtils.marshallerWithRecursionLimit( in givenPositiveLimit_testRecursionLimitExceeded()
259 Marshaller<SimpleRecursiveMessage> marshaller = ProtoLiteUtils.marshallerWithRecursionLimit( in givenZeroLimit_testRecursionLimitExceeded()
268 Marshaller<SimpleRecursiveMessage> marshaller = ProtoLiteUtils.marshallerWithRecursionLimit( in givenPositiveLimit_testRecursionLimitNotExceeded()
277 Marshaller<SimpleRecursiveMessage> marshaller = ProtoLiteUtils.marshallerWithRecursionLimit( in givenZeroLimit_testRecursionLimitNotExceeded()
/external/grpc-grpc-java/protobuf-lite/src/main/java/io/grpc/protobuf/lite/
DProtoLiteUtils.java95 public static <T extends MessageLite> Marshaller<T> marshallerWithRecursionLimit( in marshallerWithRecursionLimit() method in ProtoLiteUtils