Home
last modified time | relevance | path

Searched refs:writeByteArrayNoTag (Results 1 – 4 of 4) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedOutputStream.java468 public final void writeByteArrayNoTag(final byte[] value) throws IOException { in writeByteArrayNoTag() method in CodedOutputStream
469 writeByteArrayNoTag(value, 0, value.length); in writeByteArrayNoTag()
979 abstract void writeByteArrayNoTag(final byte[] value, final int offset, final int length) in writeByteArrayNoTag() method in CodedOutputStream
1235 writeByteArrayNoTag(value, offset, length); in writeByteArray()
1253 public final void writeByteArrayNoTag(final byte[] value, int offset, int length) in writeByteArrayNoTag() method in CodedOutputStream.ArrayEncoder
1628 writeByteArrayNoTag(value, offset, length); in writeByteArray()
1697 public void writeByteArrayNoTag(final byte[] value, int offset, int length) throws IOException { in writeByteArrayNoTag() method in CodedOutputStream.SafeDirectNioEncoder
1961 writeByteArrayNoTag(value, offset, length); in writeByteArray()
2027 public void writeByteArrayNoTag(byte[] value, int offset, int length) throws IOException { in writeByteArrayNoTag() method in CodedOutputStream.UnsafeDirectNioEncoder
2474 writeByteArrayNoTag(value, offset, length); in writeByteArray()
[all …]
DFieldSet.java691 output.writeByteArrayNoTag((byte[]) value); in writeElementNoTag()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DCodedOutputStreamTest.java506 coder.stream().writeByteArrayNoTag(fullArray, 2, 2);
DCodedInputStreamTest.java1203 codedOutputStream.writeByteArrayNoTag(new byte[] { 0x0, 0x1, 0x2, 0x3, 0x4, 0x5 }); in testMaliciousInputStream()