HomeSort by relevance Sort by last modified time
    Searched defs:CodedOutputStream (Results 1 - 3 of 3) sorted by null

  /external/protobuf/src/google/protobuf/io/
coded_stream.cc 524 // CodedOutputStream =================================================
526 CodedOutputStream::CodedOutputStream(ZeroCopyOutputStream* output)
540 CodedOutputStream::~CodedOutputStream() {
546 bool CodedOutputStream::Skip(int count) {
558 bool CodedOutputStream::GetDirectBufferPointer(void** data, int* size) {
566 void CodedOutputStream::WriteRaw(const void* data, int size) {
578 uint8* CodedOutputStream::WriteRawToArray(
585 void CodedOutputStream::WriteLittleEndian32(uint32 value)
    [all...]
coded_stream.h 35 // This file contains the CodedInputStream and CodedOutputStream classes,
47 // CodedOutputStream example:
54 // CodedOutputStream* coded_output = new CodedOutputStream(raw_output);
130 class CodedOutputStream;
534 // Most users will not need to deal with CodedOutputStream.
536 // Most methods of CodedOutputStream which return a bool return false if an
538 // CodedOutputStream is broken and is no longer useful. The Write* methods do
542 // Note that every method of CodedOutputStream which writes some data has
552 // CodedOutputStream coded_output = new CodedOutputStream(raw_output)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java 51 public final class CodedOutputStream {
65 * CodedOutputStream. Used by AbstractMessageLite.
68 * CodedOutputStream.
75 private CodedOutputStream(final byte[] buffer, final int offset,
83 private CodedOutputStream(final OutputStream output, final byte[] buffer) {
91 * Create a new {@code CodedOutputStream} wrapping the given
94 public static CodedOutputStream newInstance(final OutputStream output) {
99 * Create a new {@code CodedOutputStream} wrapping the given
102 public static CodedOutputStream newInstance(final OutputStream output,
104 return new CodedOutputStream(output, new byte[bufferSize])
    [all...]

Completed in 48 milliseconds