Home
last modified time | relevance | path

Searched refs:CATEGORY (Results 1 – 6 of 6) sorted by relevance

/tools/loganalysis/src/com/android/loganalysis/item/
DMiscKernelLogItem.java33 public static final String CATEGORY = "CATEGORY"; field in MiscKernelLogItem
38 EVENT_TIME, PREAMBLE, CATEGORY, STACK));
88 return (String) getAttribute(CATEGORY); in getCategory()
95 setAttribute(CATEGORY, category); in setCategory()
DInterruptItem.java53 public static final String CATEGORY = "CATEGORY"; field in InterruptItem.InterruptInfoItem
58 NAME, INTERRUPT_COUNT, CATEGORY));
73 setAttribute(CATEGORY, category); in InterruptInfoItem()
94 return (InterruptCategory) getAttribute(CATEGORY); in getCategory()
DMiscLogcatItem.java42 public static final String CATEGORY = "CATEGORY"; field in MiscLogcatItem
47 EVENT_TIME, PID, TID, APP, TAG, LAST_PREAMBLE, PROCESS_PREAMBLE, CATEGORY, STACK));
176 return (String) getAttribute(CATEGORY); in getCategory()
183 setAttribute(CATEGORY, category); in setCategory()
DWakelockItem.java59 public static final String CATEGORY = "CATEGORY"; field in WakelockItem.WakelockInfoItem
62 NAME, PROCESS_UID, PROCESS_NAME, HELD_TIME, LOCKED_COUNT, CATEGORY));
93 setAttribute(CATEGORY, category); in WakelockInfoItem()
128 return (WakeLockCategory) getAttribute(CATEGORY); in getCategory()
/tools/loganalysis/javatests/com/android/loganalysis/item/
DWakelockItemTest.java54 assertTrue(wakelockInfo.getJSONObject(0).has(WakelockInfoItem.CATEGORY)); in testToJson()
60 assertTrue(wakelockInfo.getJSONObject(1).has(WakelockInfoItem.CATEGORY)); in testToJson()
DInterruptItemTest.java49 assertTrue(interruptsInfo.getJSONObject(0).has(InterruptInfoItem.CATEGORY)); in testToJson()