Searched refs:eod_ (Results 1 – 1 of 1) sorted by relevance
385 buf_(buf), buf_len_(buf_len), bol_(buf), eol_(buf), eod_(buf) { in LineReader()399 eod_ = buf_ + num_bytes; in ReadLine()403 SAFE_ASSERT(bol_ <= eod_); // "bol_" can point to "eod_". in ReadLine()405 const int incomplete_line_length = eod_ - bol_; in ReadLine()416 eod_ = append_pos + num_bytes; in ReadLine()446 return reinterpret_cast<char *>(memchr(bol_, '\n', eod_ - bol_)); in FindLineFeed()450 return buf_ == eod_; in BufferIsEmpty()462 const char *eod_; // End of data in "buf_". member in __anoncc39a8500111::LineReader