Home
last modified time | relevance | path

Searched refs:InvalidProtocolBufferNanoException (Results 1 – 8 of 8) sorted by relevance

/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
DInvalidProtocolBufferNanoException.java41 public class InvalidProtocolBufferNanoException extends IOException { class
44 public InvalidProtocolBufferNanoException(final String description) { in InvalidProtocolBufferNanoException() method in InvalidProtocolBufferNanoException
48 static InvalidProtocolBufferNanoException truncatedMessage() { in truncatedMessage()
49 return new InvalidProtocolBufferNanoException( in truncatedMessage()
56 static InvalidProtocolBufferNanoException negativeSize() { in negativeSize()
57 return new InvalidProtocolBufferNanoException( in negativeSize()
62 static InvalidProtocolBufferNanoException malformedVarint() { in malformedVarint()
63 return new InvalidProtocolBufferNanoException( in malformedVarint()
67 static InvalidProtocolBufferNanoException invalidTag() { in invalidTag()
68 return new InvalidProtocolBufferNanoException( in invalidTag()
[all …]
DCodedInputByteBufferNano.java79 throw InvalidProtocolBufferNanoException.invalidTag(); in readTag()
93 throws InvalidProtocolBufferNanoException { in checkLastTagWas()
95 throw InvalidProtocolBufferNanoException.invalidEndTag(); in checkLastTagWas()
128 throw InvalidProtocolBufferNanoException.invalidWireType(); in skipField()
206 throw InvalidProtocolBufferNanoException.recursionLimitExceeded(); in readGroup()
219 throw InvalidProtocolBufferNanoException.recursionLimitExceeded(); in readMessage()
312 throw InvalidProtocolBufferNanoException.malformedVarint(); in readRawVarint32()
332 throw InvalidProtocolBufferNanoException.malformedVarint(); in readRawVarint64()
478 public int pushLimit(int byteLimit) throws InvalidProtocolBufferNanoException { in pushLimit()
480 throw InvalidProtocolBufferNanoException.negativeSize(); in pushLimit()
[all …]
DMessageNano.java130 throws InvalidProtocolBufferNanoException { in mergeFrom()
139 final int off, final int len) throws InvalidProtocolBufferNanoException { in mergeFrom()
146 } catch (InvalidProtocolBufferNanoException e) { in mergeFrom()
/external/protobuf/javanano/src/device/main/java/com/google/protobuf/nano/android/
DParcelableMessageNanoCreator.java37 import com.google.protobuf.nano.InvalidProtocolBufferNanoException;
79 } catch (InvalidProtocolBufferNanoException e) { in createFromParcel()
/external/grpc-grpc-java/protobuf-nano/src/test/java/io/grpc/protobuf/nano/
DNanoUtilsTest.java25 import com.google.protobuf.nano.InvalidProtocolBufferNanoException;
70 assertTrue(ex.getCause() instanceof InvalidProtocolBufferNanoException); in parseInvalid()
/external/grpc-grpc-java/protobuf-nano/src/generated/test/javanano/io/grpc/protobuf/nano/
DMessages.java126 throws com.google.protobuf.nano.InvalidProtocolBufferNanoException { in parseFrom()
/external/protobuf/
DMakefile.am362 javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java \
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java2347 private void testEncodingOfString(char c, int length) throws InvalidProtocolBufferNanoException { in testEncodingOfString()
3084 public void testExtensionsMutation_Equals() throws InvalidProtocolBufferNanoException { in testExtensionsMutation_Equals()