Home
last modified time | relevance | path

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

/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
DPrefetchController.java226 final Long nextEstimatedLaunchTime = mEstimatedLaunchTimes.get(userId, pkgName); in getNextEstimatedLaunchTimeLocked() local
227 if (nextEstimatedLaunchTime == null in getNextEstimatedLaunchTimeLocked()
228 || nextEstimatedLaunchTime < now - mLaunchTimeAllowanceMs) { in getNextEstimatedLaunchTimeLocked()
236 return nextEstimatedLaunchTime; in getNextEstimatedLaunchTimeLocked()
364 final long nextEstimatedLaunchTime = getNextEstimatedLaunchTimeLocked(userId, pkgName, now); in updateThresholdAlarmLocked() local
366 if (nextEstimatedLaunchTime != Long.MAX_VALUE in updateThresholdAlarmLocked()
367 && nextEstimatedLaunchTime - now > mLaunchTimeThresholdMs) { in updateThresholdAlarmLocked()
370 nextEstimatedLaunchTime - (now + mLaunchTimeThresholdMs); in updateThresholdAlarmLocked()
493 final long nextEstimatedLaunchTime = mUsageStatsManagerInternal in handleMessage() local
498 + " of " + nextEstimatedLaunchTime in handleMessage()
[all …]
/frameworks/base/apex/jobscheduler/service/java/com/android/server/usage/
DAppIdleHistory.java194 long nextEstimatedLaunchTime; field in AppIdleHistory.AppUsageHistory
475 appUsageHistory.nextEstimatedLaunchTime = launchTime; in setEstimatedLaunchTime()
521 || appUsageHistory.nextEstimatedLaunchTime < System.currentTimeMillis()) { in getEstimatedLaunchTime()
524 return appUsageHistory.nextEstimatedLaunchTime; in getEstimatedLaunchTime()
789 appUsageHistory.nextEstimatedLaunchTime = getLongValue(parser, in readAppIdleTimes()
928 if (history.nextEstimatedLaunchTime > 0) { in writeAppIdleTimes()
930 Long.toString(history.nextEstimatedLaunchTime)); in writeAppIdleTimes()
1012 if (appUsageHistory.nextEstimatedLaunchTime > 0) { in dumpUser()
1014 TimeUtils.formatDuration(appUsageHistory.nextEstimatedLaunchTime - now, idpw); in dumpUser()
/frameworks/base/services/usage/java/com/android/server/usage/
DUsageStatsService.java2180 final long nextEstimatedLaunchTime = in handleMessage() local
2185 userId, pkgName, nextEstimatedLaunchTime); in handleMessage()