Searched refs:getCategory (Results 1 – 12 of 12) sorted by relevance
/tools/loganalysis/javatests/com/android/loganalysis/parser/ |
D | KernelLogParserTest.java | 229 assertEquals(KernelLogParser.SELINUX_DENIAL, item.getCategory()); in testSelinuxDenialParse() 235 assertEquals(KernelLogParser.SELINUX_DENIAL, selinuxItem.getCategory()); in testSelinuxDenialParse() 261 assertEquals(KernelLogParser.LOW_MEMORY_KILLER, miscItem.getCategory()); in testLowMemoryKillerParse() 265 assertEquals(KernelLogParser.LOW_MEMORY_KILLER, lmkItem.getCategory()); in testLowMemoryKillerParse() 294 assertEquals(KernelLogParser.PAGE_ALLOC_FAILURE, miscItem.getCategory()); in testPageAllocationFailureParse() 298 assertEquals(KernelLogParser.PAGE_ALLOC_FAILURE, failItem.getCategory()); in testPageAllocationFailureParse()
|
D | BugreportParserTest.java | 273 assertEquals("NORMAL_REBOOT", bugreport.getLastKmsg().getEvents().get(0).getCategory()); in testParse_bootreason_kernel_good() 291 assertEquals("KERNEL_RESET", bugreport.getLastKmsg().getEvents().get(0).getCategory()); in testParse_bootreason_kernel_bad() 310 assertEquals("NORMAL_REBOOT", bugreport.getLastKmsg().getEvents().get(0).getCategory()); in testParse_bootreason_prop_good() 329 assertEquals("KERNEL_RESET", bugreport.getLastKmsg().getEvents().get(0).getCategory()); in testParse_bootreason_prop_bad() 356 assertEquals("KERNEL_RESET", bugreport.getLastKmsg().getEvents().get(0).getCategory()); in testParse_bootreason_duplicate()
|
D | LogcatParserTest.java | 145 assertEquals(LogcatParser.JAVA_CRASH, logcat.getJavaCrashes().get(0).getCategory()); in testParse_test_exception()
|
/tools/loganalysis/src/com/android/loganalysis/rule/ |
D | InterruptRule.java | 70 if (interrupts.getCategory() != InterruptCategory.UNKNOWN_INTERRUPT) { in getAnalysis() 72 interrupts.getCategory(), in getAnalysis()
|
D | WakelockRule.java | 70 wakelocks.getCategory(), in getAnalysis()
|
/tools/loganalysis/src/com/android/loganalysis/item/ |
D | InterruptItem.java | 93 public InterruptCategory getCategory() { in getCategory() method in InterruptItem.InterruptInfoItem 120 if (category.equals(interrupt.getCategory())) { in getInterrupts()
|
D | KernelLogItem.java | 99 if (KernelLogParser.KERNEL_RESET.equals(event.getCategory()) && in addEvent() 112 if (item.getCategory().equals(category)) { in getMiscEvents()
|
D | WakelockItem.java | 127 public WakeLockCategory getCategory() { in getCategory() method in WakelockItem.WakelockInfoItem 176 if (category.equals(wakeLock.getCategory())) { in getWakeLocks()
|
D | MiscKernelLogItem.java | 87 public String getCategory() { in getCategory() method in MiscKernelLogItem
|
D | MiscLogcatItem.java | 175 public String getCategory() { in getCategory() method in MiscLogcatItem
|
D | LogcatItem.java | 143 if (item.getCategory().equals(category)) { in getMiscEvents()
|
/tools/loganalysis/src/com/android/loganalysis/parser/ |
D | LogcatParser.java | 596 return crashTag.getCategory(); in getJavaCrashCategory() 617 public String getCategory() { in getCategory() method in LogcatParser.CrashTag
|