Searched refs:ByteOutput (Results 1 – 10 of 10) sorted by relevance
50 public abstract class ByteOutput { class
98 public static void unsafeWriteTo(ByteString bytes, ByteOutput output) throws IOException { in unsafeWriteTo()
143 void writeTo(ByteOutput output) throws IOException { in writeTo()
680 abstract void writeTo(ByteOutput byteOutput) throws IOException; in writeTo()1322 final void writeTo(ByteOutput output) throws IOException { in writeTo()
57 public abstract class CodedOutputStream extends ByteOutput {209 static CodedOutputStream newInstance(ByteOutput byteOutput, int bufferSize) { in newInstance()1985 private final ByteOutput out;1987 ByteOutputEncoder(ByteOutput out, int bufferSize) { in ByteOutputEncoder()
404 void writeTo(ByteOutput output) throws IOException { in writeTo()
345 ByteOutput out = new ByteOutput() { in testWriteToShouldExposeInternalBufferToByteOutput()
367 ByteOutput out = new ByteOutput() { in testWriteToShouldExposeInternalBufferToByteOutput()
162 - Introduction of the `ByteOutput` interface. This is similar to165 - `ByteString` now supports writing to a `ByteOutput`, which will directly167 to the `ByteOutput` without copying.168 - `CodedOutputStream` now supports writing to a `ByteOutput`. `ByteString`170 (lazily) written to the `ByteOutput` directly.173 `ByteOutput` that chains together the chunks received from
202 java/core/src/main/java/com/google/protobuf/ByteOutput.java \