Searched refs:writeToInternal (Results 1 – 5 of 5) sorted by relevance
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | RopeByteString.java | 390 void writeToInternal(OutputStream out, int sourceOffset, in writeToInternal() method in RopeByteString 393 left.writeToInternal(out, sourceOffset, numberToWrite); in writeToInternal() 395 right.writeToInternal(out, sourceOffset - leftLength, numberToWrite); in writeToInternal() 398 left.writeToInternal(out, sourceOffset, numberToWriteInLeft); in writeToInternal() 399 right.writeToInternal(out, 0, numberToWrite - numberToWriteInLeft); in writeToInternal()
|
D | ByteString.java | 657 writeToInternal(out, sourceOffset, numberToWrite); in writeTo() 665 abstract void writeToInternal(OutputStream out, int sourceOffset, int numberToWrite) in writeToInternal() method 1316 final void writeToInternal(OutputStream outputStream, int sourceOffset, int numberToWrite) in writeToInternal() method in LiteralByteString
|
D | NioByteString.java | 130 void writeToInternal(OutputStream out, int sourceOffset, int numberToWrite) throws IOException { in writeToInternal() method in NioByteString
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | LiteralByteStringTest.java | 338 stringUnderTest.writeToInternal(os, 0, stringUnderTest.size()); in testWriteToInternalShouldExposeInternalBufferToOutputStream()
|
D | NioByteStringTest.java | 360 testString.writeToInternal(os, 0, testString.size()); in testWriteToInternalShouldExposeInternalBufferToOutputStream()
|