Searched refs:getCrash (Results 1 – 5 of 5) sorted by relevance
101 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 …]
104 if (monkeyLog.getCrash() != null && monkeyLog.getCrash() instanceof AnrItem) { in testParse()107 if (monkeyLog.getCrash() != null && monkeyLog.getCrash() instanceof JavaCrashItem) { in testParse()
180 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()
337 public MiscLogcatItem getCrash() { in getCrash() method in MonkeyLogItem
433 boolean isAnr = mMonkeyLog.getCrash() instanceof AnrItem; in runMonkey()