Searched refs:timesCalled (Results 1 – 2 of 2) sorted by relevance
/tools/loganalysis/src/com/android/loganalysis/parser/ |
D | WakelockParser.java | 101 final int timesCalled = Integer.parseInt(m.group(7)); in parseKernelWakeLock() local 103 mItem.addWakeLock(name, wakelockTime, timesCalled, category); in parseKernelWakeLock() 125 final int timesCalled = Integer.parseInt(m.group(8)); in parsePartialWakeLock() local 127 mItem.addWakeLock(name, processUID, wakelockTime, timesCalled, category); in parsePartialWakeLock()
|
/tools/loganalysis/src/com/android/loganalysis/item/ |
D | WakelockItem.java | 148 public void addWakeLock(String name, String processUID, long heldTime, int timesCalled, in addWakeLock() argument 150 mWakeLocks.add(new WakelockInfoItem(name, processUID, heldTime, timesCalled, category)); in addWakeLock() 161 public void addWakeLock(String name, long heldTime, int timesCalled, in addWakeLock() argument 163 addWakeLock(name, null, heldTime, timesCalled, category); in addWakeLock()
|