/frameworks/base/core/java/com/android/internal/app/ |
D | IBatteryStats.aidl | 71 void noteStartWakelock(int uid, int pid, String name, String historyName, in noteStartWakelock() argument 73 void noteStopWakelock(int uid, int pid, String name, String historyName, int type); in noteStopWakelock() argument 75 void noteStartWakelockFromSource(in WorkSource ws, int pid, String name, String historyName, in noteStartWakelockFromSource() argument 80 void noteStopWakelockFromSource(in WorkSource ws, int pid, String name, String historyName, in noteStopWakelockFromSource() argument 82 void noteLongPartialWakelockStart(String name, String historyName, int uid); in noteLongPartialWakelockStart() argument 83 void noteLongPartialWakelockFinish(String name, String historyName, int uid); in noteLongPartialWakelockFinish() argument
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | BatteryStatsService.java | 469 public void noteStartWakelock(int uid, int pid, String name, String historyName, int type, in noteStartWakelock() argument 473 mStats.noteStartWakeLocked(uid, pid, name, historyName, type, unimportantForLogging, in noteStartWakelock() 478 public void noteStopWakelock(int uid, int pid, String name, String historyName, int type) { in noteStopWakelock() argument 481 mStats.noteStopWakeLocked(uid, pid, name, historyName, type, in noteStopWakelock() 487 String historyName, int type, boolean unimportantForLogging) { in noteStartWakelockFromSource() argument 490 mStats.noteStartWakeFromSourceLocked(ws, pid, name, historyName, in noteStartWakelockFromSource() 496 String historyName, int type, WorkSource newWs, int newPid, String newName, in noteChangeWakelockFromSource() argument 500 mStats.noteChangeWakelockFromSourceLocked(ws, pid, name, historyName, type, in noteChangeWakelockFromSource() 505 public void noteStopWakelockFromSource(WorkSource ws, int pid, String name, String historyName, in noteStopWakelockFromSource() argument 509 mStats.noteStopWakeFromSourceLocked(ws, pid, name, historyName, type); in noteStopWakelockFromSource() [all …]
|
/frameworks/base/core/java/com/android/internal/os/ |
D | BatteryStatsImpl.java | 3743 public void noteStartWakeLocked(int uid, int pid, String name, String historyName, int type, in noteStartWakeLocked() argument 3750 if (historyName == null) { in noteStartWakeLocked() 3751 historyName = name; in noteStartWakeLocked() 3754 if (mActiveEvents.updateState(HistoryItem.EVENT_WAKE_LOCK_START, historyName, in noteStartWakeLocked() 3757 HistoryItem.EVENT_WAKE_LOCK_START, historyName, uid); in noteStartWakeLocked() 3765 mHistoryCur.wakelockTag.string = mInitialAcquireWakeName = historyName; in noteStartWakeLocked() 3775 mHistoryCur.wakelockTag.string = mInitialAcquireWakeName = historyName; in noteStartWakeLocked() 3796 public void noteStopWakeLocked(int uid, int pid, String name, String historyName, int type, in noteStopWakeLocked() argument 3802 if (historyName == null) { in noteStopWakeLocked() 3803 historyName = name; in noteStopWakeLocked() [all …]
|