Lines Matching refs:line_start
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()
223 : line_end - line_start); in TEST_F()
227 line_end = logcat_out.find('\n', line_start); in TEST_F()
229 line_start, line_end == std::string::npos ? std::string::npos : line_end - line_start); in TEST_F()