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.aidl67 void noteStartWakelock(int uid, int pid, String name, String historyName, in noteStartWakelock() argument
69 void noteStopWakelock(int uid, int pid, String name, String historyName, int type); in noteStopWakelock() argument
71 void noteStartWakelockFromSource(in WorkSource ws, int pid, String name, String historyName, in noteStartWakelockFromSource() argument
76 void noteStopWakelockFromSource(in WorkSource ws, int pid, String name, String historyName, in noteStopWakelockFromSource() argument
/frameworks/base/services/core/java/com/android/server/am/
DBatteryStatsService.java394 public void noteStartWakelock(int uid, int pid, String name, String historyName, int type, in noteStartWakelock() argument
398 mStats.noteStartWakeLocked(uid, pid, name, historyName, type, unimportantForLogging, in noteStartWakelock()
403 public void noteStopWakelock(int uid, int pid, String name, String historyName, int type) { in noteStopWakelock() argument
406 mStats.noteStopWakeLocked(uid, pid, name, historyName, type, in noteStopWakelock()
412 String historyName, int type, boolean unimportantForLogging) { in noteStartWakelockFromSource() argument
415 mStats.noteStartWakeFromSourceLocked(ws, pid, name, historyName, in noteStartWakelockFromSource()
421 String historyName, int type, WorkSource newWs, int newPid, String newName, in noteChangeWakelockFromSource() argument
425 mStats.noteChangeWakelockFromSourceLocked(ws, pid, name, historyName, type, in noteChangeWakelockFromSource()
430 public void noteStopWakelockFromSource(WorkSource ws, int pid, String name, String historyName, in noteStopWakelockFromSource() argument
434 mStats.noteStopWakeFromSourceLocked(ws, pid, name, historyName, type); in noteStopWakelockFromSource()
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java2764 public void noteStartWakeLocked(int uid, int pid, String name, String historyName, int type, in noteStartWakeLocked() argument
2771 if (historyName == null) { in noteStartWakeLocked()
2772 historyName = name; in noteStartWakeLocked()
2775 if (mActiveEvents.updateState(HistoryItem.EVENT_WAKE_LOCK_START, historyName, in noteStartWakeLocked()
2778 HistoryItem.EVENT_WAKE_LOCK_START, historyName, uid); in noteStartWakeLocked()
2786 mHistoryCur.wakelockTag.string = mInitialAcquireWakeName = historyName; in noteStartWakeLocked()
2796 mHistoryCur.wakelockTag.string = mInitialAcquireWakeName = historyName; in noteStartWakeLocked()
2817 public void noteStopWakeLocked(int uid, int pid, String name, String historyName, int type, in noteStopWakeLocked() argument
2823 if (historyName == null) { in noteStopWakeLocked()
2824 historyName = name; in noteStopWakeLocked()
[all …]