Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/main/java/com/google/protobuf/nano/
DCodedInputByteBufferNano.java198 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
/frameworks/base/core/java/android/util/proto/
DProtoInputStream.java472 value = readRawBytes(len); in readBytes()
704 private byte[] readRawBytes(int n) throws IOException { in readRawBytes() method
757 return new String(readRawBytes(n), 0, n, StandardCharsets.UTF_8); in readRawString()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/test/java/com/google/protobuf/
DCodedInputStreamTest.java506 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()
DLiteralByteStringTest.java516 byte[] roundTripBytes = cis.readRawBytes(referenceBytes.length); in testNewCodedInput()
DNioByteStringTest.java587 byte[] roundTripBytes = cis.readRawBytes(BYTES.length); in testNewCodedInput()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
DLiteralByteStringTest.java328 byte[] roundTripBytes = cis.readRawBytes(referenceBytes.length); in testNewCodedInput()
DCodedInputStreamTest.java407 input.readRawBytes(16); in testResetSizeCounter()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DCodedInputStream.java1140 public byte[] readRawBytes(final int size) throws IOException { in readRawBytes() method in CodedInputStream