Home
last modified time | relevance | path

Searched refs:BugreportParser (Results 1 – 5 of 5) sorted by relevance

/tools/loganalysis/tests/src/com/android/loganalysis/parser/
DBugreportParserTest.java164 BugreportItem bugreport = new BugreportParser().parse(lines); in testParse()
216 BugreportItem bugreport = new BugreportParser().parse(lines); in testParse_set_logcat_year()
229 BugreportItem bugreport = new BugreportParser().parse(lines); in testParse_command_line()
233 bugreport = new BugreportParser().parse(lines); in testParse_command_line()
238 bugreport = new BugreportParser().parse(lines); in testParse_command_line()
245 bugreport = new BugreportParser().parse(lines); in testParse_command_line()
251 bugreport = new BugreportParser().parse(lines); in testParse_command_line()
268 BugreportItem bugreport = new BugreportParser().parse(lines); in testParse_bootreason_kernel_good()
286 BugreportItem bugreport = new BugreportParser().parse(lines); in testParse_bootreason_kernel_bad()
305 BugreportItem bugreport = new BugreportParser().parse(lines); in testParse_bootreason_prop_good()
[all …]
DBugreportParserFuncTest.java43 bugreport = new BugreportParser().parse(bugreportReader); in testParse()
/tools/loganalysis/src/com/android/loganalysis/
DLogAnalyzer.java25 import com.android.loganalysis.parser.BugreportParser;
117 BugreportItem bugreport = new BugreportParser().parse(reader); in run()
/tools/tradefederation/contrib/src/com/android/monkey/
DMonkeyBase.java25 import com.android.loganalysis.parser.BugreportParser;
524 return new BugreportParser().parse(new BufferedReader(new FileReader(main))); in takeBugreport()
/tools/loganalysis/src/com/android/loganalysis/parser/
DBugreportParser.java48 public class BugreportParser extends AbstractSectionParser { class