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.aidl74 void noteStartWakelock(int uid, int pid, String name, String historyName, in noteStartWakelock() argument
76 void noteStopWakelock(int uid, int pid, String name, String historyName, int type); in noteStopWakelock() argument
78 void noteStartWakelockFromSource(in WorkSource ws, int pid, String name, String historyName, in noteStartWakelockFromSource() argument
83 void noteStopWakelockFromSource(in WorkSource ws, int pid, String name, String historyName, in noteStopWakelockFromSource() argument
85 void noteLongPartialWakelockStart(String name, String historyName, int uid); in noteLongPartialWakelockStart() argument
86 void noteLongPartialWakelockStartFromSource(String name, String historyName, in noteLongPartialWakelockStartFromSource() argument
88 void noteLongPartialWakelockFinish(String name, String historyName, int uid); in noteLongPartialWakelockFinish() argument
89 void noteLongPartialWakelockFinishFromSource(String name, String historyName, in noteLongPartialWakelockFinishFromSource() argument
/frameworks/base/services/core/java/com/android/server/am/
DBatteryStatsService.java500 public void noteStartWakelock(int uid, int pid, String name, String historyName, int type, in noteStartWakelock() argument
504 mStats.noteStartWakeLocked(uid, pid, null, name, historyName, type, in noteStartWakelock()
510 public void noteStopWakelock(int uid, int pid, String name, String historyName, int type) { in noteStopWakelock() argument
513 mStats.noteStopWakeLocked(uid, pid, null, name, historyName, type, in noteStopWakelock()
519 String historyName, int type, boolean unimportantForLogging) { in noteStartWakelockFromSource() argument
522 mStats.noteStartWakeFromSourceLocked(ws, pid, name, historyName, in noteStartWakelockFromSource()
528 String historyName, int type, WorkSource newWs, int newPid, String newName, in noteChangeWakelockFromSource() argument
532 mStats.noteChangeWakelockFromSourceLocked(ws, pid, name, historyName, type, in noteChangeWakelockFromSource()
537 public void noteStopWakelockFromSource(WorkSource ws, int pid, String name, String historyName, in noteStopWakelockFromSource() argument
541 mStats.noteStopWakeFromSourceLocked(ws, pid, name, historyName, type); in noteStopWakelockFromSource()
[all …]
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java4353 public void noteStartWakeLocked(int uid, int pid, WorkChain wc, String name, String historyName, in noteStartWakeLocked() argument
4360 if (historyName == null) { in noteStartWakeLocked()
4361 historyName = name; in noteStartWakeLocked()
4364 if (mActiveEvents.updateState(HistoryItem.EVENT_WAKE_LOCK_START, historyName, in noteStartWakeLocked()
4367 HistoryItem.EVENT_WAKE_LOCK_START, historyName, uid); in noteStartWakeLocked()
4375 mHistoryCur.wakelockTag.string = mInitialAcquireWakeName = historyName; in noteStartWakeLocked()
4385 mHistoryCur.wakelockTag.string = mInitialAcquireWakeName = historyName; in noteStartWakeLocked()
4417 public void noteStopWakeLocked(int uid, int pid, WorkChain wc, String name, String historyName, in noteStopWakeLocked() argument
4423 if (historyName == null) { in noteStopWakeLocked()
4424 historyName = name; in noteStopWakeLocked()
[all …]