Home
last modified time | relevance | path

Searched refs:getCategory (Results 1 – 12 of 12) sorted by relevance

/tools/loganalysis/javatests/com/android/loganalysis/parser/
DKernelLogParserTest.java229 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()
DBugreportParserTest.java273 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()
DLogcatParserTest.java145 assertEquals(LogcatParser.JAVA_CRASH, logcat.getJavaCrashes().get(0).getCategory()); in testParse_test_exception()
/tools/loganalysis/src/com/android/loganalysis/rule/
DInterruptRule.java70 if (interrupts.getCategory() != InterruptCategory.UNKNOWN_INTERRUPT) { in getAnalysis()
72 interrupts.getCategory(), in getAnalysis()
DWakelockRule.java70 wakelocks.getCategory(), in getAnalysis()
/tools/loganalysis/src/com/android/loganalysis/item/
DInterruptItem.java93 public InterruptCategory getCategory() { in getCategory() method in InterruptItem.InterruptInfoItem
120 if (category.equals(interrupt.getCategory())) { in getInterrupts()
DKernelLogItem.java99 if (KernelLogParser.KERNEL_RESET.equals(event.getCategory()) && in addEvent()
112 if (item.getCategory().equals(category)) { in getMiscEvents()
DWakelockItem.java127 public WakeLockCategory getCategory() { in getCategory() method in WakelockItem.WakelockInfoItem
176 if (category.equals(wakeLock.getCategory())) { in getWakeLocks()
DMiscKernelLogItem.java87 public String getCategory() { in getCategory() method in MiscKernelLogItem
DMiscLogcatItem.java175 public String getCategory() { in getCategory() method in MiscLogcatItem
DLogcatItem.java143 if (item.getCategory().equals(category)) { in getMiscEvents()
/tools/loganalysis/src/com/android/loganalysis/parser/
DLogcatParser.java596 return crashTag.getCategory(); in getJavaCrashCategory()
617 public String getCategory() { in getCategory() method in LogcatParser.CrashTag