Searched refs:next_chunk_ (Results 1 – 3 of 3) sorted by relevance
123 private ResChunk_header next_chunk_; field in Chunk.Iterator129 this.next_chunk_ = new ResChunk_header(buf.myBuf(), buf.myOffset()); in Iterator()146 ResChunk_header this_chunk = next_chunk_; in Next()153 next_chunk_ = null; in Next()155 next_chunk_ = new ResChunk_header( in Next()177 int size = dtohl(next_chunk_.size); in VerifyNextChunkNonFatal()189 int header_start = next_chunk_.myOffset(); in VerifyNextChunk()204 int header_size = dtohs(next_chunk_.headerSize); in VerifyNextChunk()205 int size = dtohl(next_chunk_.size); in VerifyNextChunk()
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()127 next_chunk_ = static_cast<const char*>(data); in Next()133 next_chunk_ = buffer_; in Next()152 next_chunk_ = nullptr; in Next()271 next_chunk_ = buffer_; in InitFrom()276 next_chunk_ = buffer_; in InitFrom()[all …]
117 if (next_chunk_ == buffer_) { in BackUp()192 (next_chunk_ == nullptr || ptr - buffer_end_ > limit_); in IsExceedingLimit()217 next_chunk_ = buffer_; in InitFrom()224 next_chunk_ = nullptr; in InitFrom()246 const char* next_chunk_; variable