Home
last modified time | relevance | path

Searched refs:line_start_ (Results 1 – 2 of 2) sorted by relevance

/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_line_reader.cpp35 line_start_ = 0; in Reset()
44 line_start_ += line_len_; in GetNextLine()
50 line_start_, in GetNextLine()
55 const char* line = buff_ + line_start_; in GetNextLine()
57 ::memchr(line, '\n', buff_size_ - line_start_)); in GetNextLine()
63 line_start_, in GetNextLine()
66 buff_ + line_start_); in GetNextLine()
71 if (line_start_ > 0) { in GetNextLine()
72 ::memmove(buff_, buff_ + line_start_, buff_size_ - line_start_); in GetNextLine()
73 buff_size_ -= line_start_; in GetNextLine()
[all …]
Dcrazy_linker_line_reader.h50 size_t line_start_; variable