Home
last modified time | relevance | path

Searched refs:WakelockInfoItem (Results 1 – 3 of 3) sorted by relevance

/tools/loganalysis/src/com/android/loganalysis/item/
DWakelockItem.java37 private Collection<WakelockInfoItem> mWakeLocks = new LinkedList<WakelockInfoItem>();
47 public static class WakelockInfoItem extends GenericItem { class in WakelockItem
72 … public WakelockInfoItem(String name, long heldTime, int lockedCount, WakeLockCategory category) { in WakelockInfoItem() method in WakelockItem.WakelockInfoItem
85 public WakelockInfoItem(String name, String processUID, long heldTime, int lockedCount, in WakelockInfoItem() method in WakelockItem.WakelockInfoItem
150 mWakeLocks.add(new WakelockInfoItem(name, processUID, heldTime, timesCalled, category)); in addWakeLock()
169 public List<WakelockInfoItem> getWakeLocks(WakeLockCategory category) { in getWakeLocks()
170 LinkedList<WakelockInfoItem> wakeLocks = new LinkedList<WakelockInfoItem>(); in getWakeLocks()
175 for (WakelockInfoItem wakeLock : mWakeLocks) { in getWakeLocks()
186 public List<WakelockInfoItem> getWakeLocks() { in getWakeLocks()
187 LinkedList<WakelockInfoItem> wakeLocks = new LinkedList<WakelockInfoItem>(); in getWakeLocks()
[all …]
/tools/loganalysis/javatests/com/android/loganalysis/item/
DWakelockItemTest.java18 import com.android.loganalysis.item.WakelockItem.WakelockInfoItem;
50 assertTrue(wakelockInfo.getJSONObject(0).has(WakelockInfoItem.NAME)); in testToJson()
51 assertTrue(wakelockInfo.getJSONObject(0).has(WakelockInfoItem.PROCESS_UID)); in testToJson()
52 assertTrue(wakelockInfo.getJSONObject(0).has(WakelockInfoItem.HELD_TIME)); in testToJson()
53 assertTrue(wakelockInfo.getJSONObject(0).has(WakelockInfoItem.LOCKED_COUNT)); in testToJson()
54 assertTrue(wakelockInfo.getJSONObject(0).has(WakelockInfoItem.CATEGORY)); in testToJson()
56 assertTrue(wakelockInfo.getJSONObject(1).has(WakelockInfoItem.NAME)); in testToJson()
57 assertFalse(wakelockInfo.getJSONObject(1).has(WakelockInfoItem.PROCESS_UID)); in testToJson()
58 assertTrue(wakelockInfo.getJSONObject(1).has(WakelockInfoItem.HELD_TIME)); in testToJson()
59 assertTrue(wakelockInfo.getJSONObject(1).has(WakelockInfoItem.LOCKED_COUNT)); in testToJson()
[all …]
/tools/loganalysis/src/com/android/loganalysis/rule/
DWakelockRule.java21 import com.android.loganalysis.item.WakelockItem.WakelockInfoItem;
38 private List<WakelockInfoItem> mOffendingWakelockList;
46 mOffendingWakelockList = new ArrayList<WakelockInfoItem>(); in applyRule()
52 for (WakelockInfoItem wakelocks : wakelockItem.getWakeLocks()) { in applyRule()
68 for (WakelockInfoItem wakelocks : mOffendingWakelockList) { in getAnalysis()