Lines Matching refs:line_start_
209 : file_(file), buf_end_(buf_), line_start_(buf_), line_end_(NULL) { in LineReader()
218 if (line_start_ >= buf_end_ || !line_end_) { in ReadLine()
223 line_start_ = buf_; in ReadLine()
227 line_start_ = line_end_ + 1; in ReadLine()
230 line_end_ = (char*)memchr(line_start_, '\n', buf_end_ - line_start_); in ReadLine()
233 size_t already_consumed = line_start_ - buf_; in ReadLine()
235 memmove(buf_, line_start_, size_rest); in ReadLine()
239 line_start_ = buf_; in ReadLine()
240 line_end_ = (char*)memchr(line_start_, '\n', buf_end_ - line_start_); in ReadLine()
243 *line_start = line_start_; in ReadLine()
253 char* line_start_; member