Searched refs:writeLazy (Results 1 – 6 of 6) sorted by relevance
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | ByteOutput.java | 87 public abstract void writeLazy(byte[] value, int offset, int length) throws IOException; in writeLazy() method in ByteOutput 115 public abstract void writeLazy(ByteBuffer value) throws IOException; in writeLazy() method in ByteOutput
|
D | CodedOutputStream.java | 452 public abstract void writeLazy(byte[] value, int offset, int length) throws IOException; in writeLazy() method in CodedOutputStream 459 public abstract void writeLazy(ByteBuffer value) throws IOException; in writeLazy() method in CodedOutputStream 978 writeLazy(bytes, 0, bytes.length); in inefficientWriteStringNoTag() 1381 public final void writeLazy(byte[] value, int offset, int length) throws IOException { in writeLazy() method in CodedOutputStream.ArrayEncoder 1399 public final void writeLazy(ByteBuffer value) throws IOException { in writeLazy() method in CodedOutputStream.ArrayEncoder 1700 public void writeLazy(byte[] value, int offset, int length) throws IOException { in writeLazy() method in CodedOutputStream.NioEncoder 1714 public void writeLazy(ByteBuffer value) throws IOException { in writeLazy() method in CodedOutputStream.NioEncoder 2157 writeLazy(encodedBytes, 0, actualLength); in writeStringNoTag() 2217 public void writeLazy(byte[] value, int offset, int length) throws IOException { in writeLazy() method in CodedOutputStream.ByteOutputEncoder 2219 out.writeLazy(value, offset, length); in writeLazy() [all …]
|
D | NioByteString.java | 144 output.writeLazy(buffer.slice()); in writeTo()
|
D | ByteString.java | 1323 output.writeLazy(bytes, getOffsetIntoBytes(), size()); in writeTo()
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | LiteralByteStringTest.java | 357 public void writeLazy(byte[] value, int offset, int length) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput() 367 public void writeLazy(ByteBuffer value) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput()
|
D | NioByteStringTest.java | 379 public void writeLazy(byte[] value, int offset, int length) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput() 389 public void writeLazy(ByteBuffer value) throws IOException { in testWriteToShouldExposeInternalBufferToByteOutput()
|