Searched refs:line_start (Results 1 – 3 of 3) sorted by relevance
/system/memory/lmkd/tests/ |
D | lmkd_tests.cpp | 205 size_t line_start = logcat_out.find(LMKD_KILL_LINE_START); in TEST_F() local 206 ASSERT_TRUE(line_start != std::string::npos) << "Kill report is not found"; in TEST_F() 207 size_t line_end = logcat_out.find('\n', line_start); in TEST_F() 209 line_start, line_end == std::string::npos ? std::string::npos : line_end - line_start); in TEST_F() 214 line_start = logcat_out.find(LMKD_REAP_LINE_START, line_end); in TEST_F() 215 if (line_start == std::string::npos) { in TEST_F() 217 line_start = logcat_out.find(LMKD_REAP_MRELESE_ERR_MARKER, line_end); in TEST_F() 219 ASSERT_TRUE(line_start != std::string::npos) << "Reaping time report is not found"; in TEST_F() 221 line_end = logcat_out.find('\n', line_start); in TEST_F() 222 line = logcat_out.substr(line_start, line_end == std::string::npos ? std::string::npos in TEST_F() [all …]
|
/system/libprocinfo/include/procinfo/ |
D | process_map.h | 181 char* line_start = content; in ReadMapFileContent() local 186 while (line_start != nullptr && *line_start != '\0') { in ReadMapFileContent() 187 bool parsed = ParseMapsFileLine(line_start, start_addr, end_addr, flags, pgoff, in ReadMapFileContent() 193 line_start = next_line; in ReadMapFileContent() 205 char* line_start = content; in ReadMapFileContent() local 210 while (line_start != nullptr && *line_start != '\0') { in ReadMapFileContent() 211 bool parsed = ParseMapsFileLine(line_start, start_addr, end_addr, flags, pgoff, in ReadMapFileContent() 217 line_start = next_line; in ReadMapFileContent()
|
/system/logging/logwrapper/ |
D | logwrap.cpp | 188 char* line_start; in print_buf_lines() local 192 line_start = buf; in print_buf_lines() 199 do_log_line(log_info, line_start); in print_buf_lines() 202 line_start = buf + i + 1; in print_buf_lines() 205 do_log_line(log_info, line_start); in print_buf_lines()
|