Home
last modified time | relevance | path

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

/tools/loganalysis/javatests/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 …]
/tools/loganalysis/src/com/android/loganalysis/
DLogAnalyzer.java24 import com.android.loganalysis.parser.BugreportParser;
112 BugreportItem bugreport = new BugreportParser().parse(reader); in run()
/tools/tradefederation/contrib/src/com/android/monkey/
DMonkeyBase.java23 import com.android.loganalysis.parser.BugreportParser;
466 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