Searched refs:next_chunk_ (Results 1 – 2 of 2) sorted by relevance
103 if (next_chunk_ == nullptr) return nullptr; // We've reached end of stream. in Next()104 if (next_chunk_ != buffer_) { in Next()107 buffer_end_ = next_chunk_ + size_ - kSlopBytes; in Next()108 auto res = next_chunk_; in Next()109 next_chunk_ = buffer_; in Next()126 next_chunk_ = static_cast<const char*>(data); in Next()132 next_chunk_ = buffer_; in Next()151 next_chunk_ = nullptr; in Next()297 next_chunk_ = buffer_; in InitFrom()302 next_chunk_ = buffer_; in InitFrom()[all …]
118 if (next_chunk_ == buffer_) { in BackUp()195 (next_chunk_ == nullptr || ptr - buffer_end_ > limit_); in IsExceedingLimit()223 next_chunk_ = buffer_; in InitFrom()230 next_chunk_ = nullptr; in InitFrom()253 const char* next_chunk_; variable