Home
last modified time | relevance | path

Searched refs:expectedBytesStream (Results 1 – 2 of 2) sorted by relevance

/external/archive-patcher/generator/src/main/java/com/google/archivepatcher/generator/
DMatchingOutputStream.java34 private final InputStream expectedBytesStream; field in MatchingOutputStream
47 public MatchingOutputStream(InputStream expectedBytesStream, int matchBufferSize) { in MatchingOutputStream() argument
51 this.expectedBytesStream = expectedBytesStream; in MatchingOutputStream()
57 int expected = expectedBytesStream.read(); in write()
76 int numReadThisLoop = expectedBytesStream.read(buffer, 0, maxToRead); in write()
91 expectedBytesStream.close(); in close()
100 if (expectedBytesStream.read() != -1) { in expectEof()
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DCodedOutputStreamTest.java492 ByteArrayOutputStream expectedBytesStream = new ByteArrayOutputStream();
495 expectedBytesStream.write(2);
496 expectedBytesStream.write(substr.getBytes(Internal.UTF_8));
498 final byte[] expectedBytes = expectedBytesStream.toByteArray();