Searched refs:readRawBytes (Results 1 – 8 of 8) sorted by relevance
198 return new String(readRawBytes(size), InternalNano.UTF_8); in readString()243 return readRawBytes(size); in readBytes()595 public byte[] readRawBytes(final int size) throws IOException { in readRawBytes() method in CodedInputByteBufferNano
472 value = readRawBytes(len); in readBytes()704 private byte[] readRawBytes(int n) throws IOException { in readRawBytes() method757 return new String(readRawBytes(n), 0, n, StandardCharsets.UTF_8); in readRawString()
506 input.readRawBytes(16); in testResetSizeCounter()521 input.readRawBytes(16); in testResetSizeCounter()526 input.readRawBytes(17); // Hits limit again. in testResetSizeCounter()542 byte[] message = input.readRawBytes(16); in testSizeLimitMultipleMessages()
516 byte[] roundTripBytes = cis.readRawBytes(referenceBytes.length); in testNewCodedInput()
587 byte[] roundTripBytes = cis.readRawBytes(BYTES.length); in testNewCodedInput()
328 byte[] roundTripBytes = cis.readRawBytes(referenceBytes.length); in testNewCodedInput()
407 input.readRawBytes(16); in testResetSizeCounter()
1140 public byte[] readRawBytes(final int size) throws IOException { in readRawBytes() method in CodedInputStream