HomeSort by relevance Sort by last modified time
    Searched full:streams_ (Results 1 - 2 of 2) sorted by null

  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.cc 352 : streams_(streams), stream_count_(count), bytes_retired_(0) {
360 if (streams_[0]->Next(data, size)) return true;
363 bytes_retired_ += streams_[0]->ByteCount();
364 ++streams_;
374 streams_[0]->BackUp(count);
384 int64 target_byte_count = streams_[0]->ByteCount() + count;
385 if (streams_[0]->Skip(count)) return true;
389 int64 final_byte_count = streams_[0]->ByteCount();
395 ++streams_;
406 return bytes_retired_ + streams_[0]->ByteCount()
    [all...]
zero_copy_stream_impl.h 319 // As streams are retired, streams_ is incremented and count_ is
321 ZeroCopyInputStream* const* streams_; member in class:google::protobuf::io::ConcatenatingInputStream

Completed in 31 milliseconds