Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/app/
DIBatteryStats.aidl58 void noteStartWakelock(int uid, int pid, String name, String historyName, in noteStartWakelock() argument
60 void noteStopWakelock(int uid, int pid, String name, String historyName, int type); in noteStopWakelock() argument
62 void noteStartWakelockFromSource(in WorkSource ws, int pid, String name, String historyName, in noteStartWakelockFromSource() argument
67 void noteStopWakelockFromSource(in WorkSource ws, int pid, String name, String historyName, in noteStopWakelockFromSource() argument
/frameworks/base/services/core/java/com/android/server/am/
DBatteryStatsService.java250 public void noteStartWakelock(int uid, int pid, String name, String historyName, int type, in noteStartWakelock() argument
254 mStats.noteStartWakeLocked(uid, pid, name, historyName, type, unimportantForLogging, in noteStartWakelock()
259 public void noteStopWakelock(int uid, int pid, String name, String historyName, int type) { in noteStopWakelock() argument
262 mStats.noteStopWakeLocked(uid, pid, name, historyName, type, in noteStopWakelock()
268 String historyName, int type, boolean unimportantForLogging) { in noteStartWakelockFromSource() argument
271 mStats.noteStartWakeFromSourceLocked(ws, pid, name, historyName, in noteStartWakelockFromSource()
277 String historyName, int type, WorkSource newWs, int newPid, String newName, in noteChangeWakelockFromSource() argument
281 mStats.noteChangeWakelockFromSourceLocked(ws, pid, name, historyName, type, in noteChangeWakelockFromSource()
286 public void noteStopWakelockFromSource(WorkSource ws, int pid, String name, String historyName, in noteStopWakelockFromSource() argument
290 mStats.noteStopWakeFromSourceLocked(ws, pid, name, historyName, type); in noteStopWakelockFromSource()
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java2680 public void noteStartWakeLocked(int uid, int pid, String name, String historyName, int type, in noteStartWakeLocked() argument
2687 if (historyName == null) { in noteStartWakeLocked()
2688 historyName = name; in noteStartWakeLocked()
2691 if (mActiveEvents.updateState(HistoryItem.EVENT_WAKE_LOCK_START, historyName, in noteStartWakeLocked()
2694 HistoryItem.EVENT_WAKE_LOCK_START, historyName, uid); in noteStartWakeLocked()
2702 mHistoryCur.wakelockTag.string = mInitialAcquireWakeName = historyName; in noteStartWakeLocked()
2712 mHistoryCur.wakelockTag.string = mInitialAcquireWakeName = historyName; in noteStartWakeLocked()
2729 public void noteStopWakeLocked(int uid, int pid, String name, String historyName, int type, in noteStopWakeLocked() argument
2735 if (historyName == null) { in noteStopWakeLocked()
2736 historyName = name; in noteStopWakeLocked()
[all …]