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

  /external/protobuf/src/google/protobuf/io/
coded_stream.cc 105 int closest_limit = min(current_limit_, total_bytes_limit_);
164 total_bytes_limit_ = max(current_position, total_bytes_limit);
175 if (total_bytes_limit_ == INT_MAX) return -1;
176 return total_bytes_limit_ - CurrentPosition();
181 "big (more than " << total_bytes_limit_
209 int closest_limit = min(current_limit_, total_bytes_limit_);
259 int closest_limit = min(current_limit_, total_bytes_limit_);
392 // we hit total_bytes_limit_, which, unlike normal limits, is not a
395 if (current_position >= total_bytes_limit_) {
396 // Hit total_bytes_limit_. But if we also hit the normal limit
    [all...]
coded_stream.h 508 int total_bytes_limit_; member in class:google::protobuf::io::CodedInputStream
535 // current_limit_ or total_bytes_limit_ changes.
538 // Writes an error message saying that we hit total_bytes_limit_.
    [all...]

Completed in 32 milliseconds