Searched refs:line_start (Results 1 – 3 of 3) sorted by relevance
/system/memory/lmkd/tests/ |
D | lmkd_tests.cpp | 218 size_t line_start = logcat_out.find(LMKD_KILL_LINE_START); in TEST_F() local 219 ASSERT_TRUE(line_start != std::string::npos) << "Kill report is not found"; in TEST_F() 220 size_t line_end = logcat_out.find('\n', line_start); in TEST_F() 222 line_start, line_end == std::string::npos ? std::string::npos : line_end - line_start); in TEST_F() 227 line_start = logcat_out.find(LMKD_REAP_LINE_START); in TEST_F() 228 if (line_start == std::string::npos) { in TEST_F() 230 line_start = logcat_out.find(LMKD_REAP_MRELESE_ERR_MARKER); in TEST_F() 232 ASSERT_TRUE(line_start != std::string::npos) << "Reaping time report is not found"; in TEST_F() 234 line_end = logcat_out.find('\n', line_start); in TEST_F() 235 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 | 197 char* line_start = content; in ReadMapFileContent() local 202 while (line_start != nullptr && *line_start != '\0') { in ReadMapFileContent() 203 bool parsed = ParseMapsFileLine(line_start, start_addr, end_addr, flags, pgoff, in ReadMapFileContent() 209 line_start = next_line; in ReadMapFileContent() 221 char* line_start = content; in ReadMapFileContent() local 226 while (line_start != nullptr && *line_start != '\0') { in ReadMapFileContent() 227 bool parsed = ParseMapsFileLine(line_start, start_addr, end_addr, flags, pgoff, in ReadMapFileContent() 233 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()
|