Searched refs:getTotalDurations (Results 1 – 4 of 4) sorted by relevance
/aosp14/frameworks/base/services/core/java/com/android/server/am/ |
H A D | BaseAppStateDurationsTracker.java | 105 return res.getTotalDurations(now, index); in getTotalDurations() 108 return durations.getTotalDurations(now, index); in getTotalDurations() 112 long getTotalDurations(String packageName, int uid, long now, int index) { in getTotalDurations() method 116 long getTotalDurations(String packageName, int uid, long now) { in getTotalDurations() method 120 long getTotalDurations(int uid, long now, int index, boolean bgOnly) { in getTotalDurations() method 132 return durations.getTotalDurations(now, index); in getTotalDurations() 136 long getTotalDurations(int uid, long now, int index) { in getTotalDurations() method 137 return getTotalDurations(uid, now, index, true /* bgOnly */); in getTotalDurations() 140 long getTotalDurations(int uid, long now) { in getTotalDurations() method 243 long getTotalDurations(long now) { in getTotalDurations() method in BaseAppStateDurationsTracker.SimplePackageDurations [all …]
|
H A D | BaseAppStateDurations.java | 214 long getTotalDurations(long now, int index) { in getTotalDurations() method in BaseAppStateDurations 246 return TimeUtils.formatDuration(getTotalDurations(now, index)); in formatEventSummary() 253 + " totalDurations[0]=" + getTotalDurations(SystemClock.elapsedRealtime(), 0); in toString()
|
H A D | AppFGSTracker.java | 375 longest = Math.max(getTotalDurations(pkg, now), longest); in scheduleDurationCheckLocked() 410 final long totalDuration = getTotalDurations(pkg, now); in checkLongRunningFgs() 516 long getTotalDurations(PackageDurations pkg, long now) { in getTotalDurations() method in AppFGSTracker 517 return getTotalDurations(pkg.mPackageName, pkg.mUid, now, in getTotalDurations() 522 long getTotalDurations(int uid, long now) { in getTotalDurations() method in AppFGSTracker 523 return getTotalDurations(uid, now, in getTotalDurations() 574 final long fgsDurations = getTotalDurations(uid, SystemClock.elapsedRealtime()); in getTrackerInfoForStatsd()
|
H A D | AppRestrictionController.java | 1852 return mInjector.getAppFGSTracker().getTotalDurations(packageName, uid, now, in getForegroundServiceTotalDurations() 1862 return mInjector.getAppFGSTracker().getTotalDurations(uid, now, in getForegroundServiceTotalDurations() 1891 return mInjector.getAppMediaSessionTracker().getTotalDurations(packageName, uid, now); in getMediaSessionTotalDurations() 1898 return mInjector.getAppMediaSessionTracker().getTotalDurations(uid, now); in getMediaSessionTotalDurations()
|