Home
last modified time | relevance | path

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

/tools/loganalysis/tests/src/com/android/loganalysis/parser/
DMonkeyLogParserTest.java101 assertNull(monkeyLog.getCrash()); in testParse_success()
202 assertNotNull(monkeyLog.getCrash()); in testParse_anr()
203 assertTrue(monkeyLog.getCrash() instanceof AnrItem); in testParse_anr()
204 assertEquals("com.google.android.youtube", monkeyLog.getCrash().getApp()); in testParse_anr()
205 assertEquals(3301, monkeyLog.getCrash().getPid().intValue()); in testParse_anr()
206 assertEquals("keyDispatchingTimedOut", ((AnrItem) monkeyLog.getCrash()).getReason()); in testParse_anr()
208 ((AnrItem) monkeyLog.getCrash()).getTrace()); in testParse_anr()
275 assertNotNull(monkeyLog.getCrash()); in testParse_java_crash()
276 assertTrue(monkeyLog.getCrash() instanceof JavaCrashItem); in testParse_java_crash()
277 assertEquals("com.google.android.apps.maps", monkeyLog.getCrash().getApp()); in testParse_java_crash()
[all …]
DMonkeyLogParserFuncTest.java104 if (monkeyLog.getCrash() != null && monkeyLog.getCrash() instanceof AnrItem) { in testParse()
107 if (monkeyLog.getCrash() != null && monkeyLog.getCrash() instanceof JavaCrashItem) { in testParse()
/tools/loganalysis/src/com/android/loganalysis/parser/
DMonkeyLogParser.java180 mMonkeyLog.getCrash() instanceof AnrItem && in parseLine()
181 traces.getApp().equals(mMonkeyLog.getCrash().getApp())) { in parseLine()
182 ((AnrItem) mMonkeyLog.getCrash()).setTrace(traces.getStack()); in parseLine()
266 if (mMonkeyLog.getCrash() == null && m.matches()) { in parseLine()
273 if (mMonkeyLog.getCrash() == null && m.matches()) { in parseLine()
280 if (mMonkeyLog.getCrash() == null && m.matches()) { in parseLine()
/tools/loganalysis/src/com/android/loganalysis/item/
DMonkeyLogItem.java337 public MiscLogcatItem getCrash() { in getCrash() method in MonkeyLogItem
/tools/tradefederation/contrib/src/com/android/monkey/
DMonkeyBase.java433 boolean isAnr = mMonkeyLog.getCrash() instanceof AnrItem; in runMonkey()