Home
last modified time | relevance | path

Searched refs:total_bytes_read_ (Results 1 – 2 of 2) sorted by relevance

/external/protobuf/src/google/protobuf/io/
Dcoded_stream.cc78 GOOGLE_LOG(WARNING) << "The total number of bytes read was " << total_bytes_read_; in ~CodedInputStream()
96 total_bytes_read_ -= BufferSize() + buffer_size_after_limit_; in BackUpInputToCurrentPosition()
106 if (closest_limit < total_bytes_read_) { in RecomputeBufferLimits()
109 buffer_size_after_limit_ = total_bytes_read_ - closest_limit; in RecomputeBufferLimits()
210 int bytes_until_limit = closest_limit - total_bytes_read_; in Skip()
214 total_bytes_read_ = closest_limit; in Skip()
220 total_bytes_read_ += count; in Skip()
394 int current_position = total_bytes_read_ - buffer_size_after_limit_; in ReadTagSlow()
431 (total_bytes_read_ == current_limit_)) && in ReadTagFallback()
435 total_bytes_read_ - buffer_size_after_limit_ < total_bytes_limit_) { in ReadTagFallback()
[all …]
Dcoded_stream.h476 int total_bytes_read_; // total bytes read from input_, including variable
986 (total_bytes_read_ == current_limit_))) { in ExpectAtEnd()
996 return total_bytes_read_ - (BufferSize() + buffer_size_after_limit_); in CurrentPosition()
1169 total_bytes_read_(0), in CodedInputStream()
1190 total_bytes_read_(size), in CodedInputStream()