HomeSort by relevance Sort by last modified time
    Searched refs:writeRawBytes (Results 1 - 4 of 4) sorted by null

  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedOutputStreamMicro.java 43 * {@link #writeRawVarint32} and {@link #writeRawBytes}). If you are
337 writeRawBytes(bytes);
355 writeRawBytes(bytes);
361 writeRawBytes(value);
838 public void writeRawBytes(final byte[] value) throws IOException {
839 writeRawBytes(value, 0, value.length);
843 public void writeRawBytes(final byte[] value, int offset, int length)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
CodedOutputByteBufferNano.java 42 * {@link #writeRawVarint32} and {@link #writeRawBytes}). If you are
304 writeRawBytes(bytes);
321 writeRawBytes(value);
327 writeRawBytes(value);
773 public void writeRawBytes(final byte[] value) throws IOException {
774 writeRawBytes(value, 0, value.length);
778 public void writeRawBytes(final byte[] value, int offset, int length)
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java 43 * {@link #writeRawVarint32} and {@link #writeRawBytes}). If you are
356 writeRawBytes(bytes);
386 writeRawBytes(bytes);
874 public void writeRawBytes(final byte[] value) throws IOException {
875 writeRawBytes(value, 0, value.length);
879 public void writeRawBytes(final byte[] value, int offset, int length)
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
CodedInputStreamTest.java 389 output.writeRawBytes(new byte[32]); // Pad with a few random bytes.
498 output.writeRawBytes(new byte[] { (byte)0x80 });

Completed in 22 milliseconds