Home
last modified time | relevance | path

Searched refs:backoff (Results 1 – 6 of 6) sorted by relevance

/frameworks/proto_logging/stats/atoms/wearpas/
Dwearpas_extension_atoms.proto71 * Number of times suspend backoff started during this interval.
76 * Number of times suspend backoff continued, either multiplying the backoff
77 * or remaining at the max backoff, during this interval.
82 * Time spent in backoff during this interval. i.e. Total of individual
83 * backoff durations, each of which is measured from the moment a "new
84 * backoff" is initiated to the time beginning of the successful suspend that
85 * causes backoff to end, which will be some time before the backoff is
/frameworks/ex/common/java/com/android/common/
DOperationScheduler.java182 long backoff = options.backoffFixedMillis + in getNextTimeMillis() local
187 backoff = Math.min(backoff, options.maxMoratoriumMillis); in getNextTimeMillis()
189 time = Math.max(time, lastErrorTimeMillis + backoff); in getNextTimeMillis()
/frameworks/base/services/backup/java/com/android/server/backup/fullbackup/
DPerformFullTransportBackupTask.java341 long backoff = 0; in run() local
564 backoff = transport.requestFullBackupTime(); in run()
566 Slog.i(TAG, "Transport suggested backoff=" + backoff); in run()
694 mUserBackupManagerService.scheduleNextFullBackupJob(backoff); in run()
/frameworks/base/services/core/java/com/android/server/content/
DSyncManager.java1533 Pair<Long, Long> backoff = mSyncStorageEngine.getBackoff(target); in clearBackoffSetting() local
1534 if (backoff != null && backoff.first == SyncStorageEngine.NOT_IN_BACKOFF_MODE && in clearBackoffSetting()
1535 backoff.second == SyncStorageEngine.NOT_IN_BACKOFF_MODE) { in clearBackoffSetting()
1581 final long backoff = now + newDelayInMs; in increaseBackoffSetting() local
1583 Slog.v(TAG, "Backoff until: " + backoff + ", delayTime: " + newDelayInMs); in increaseBackoffSetting()
1585 mSyncStorageEngine.setBackoff(target, backoff, newDelayInMs); in increaseBackoffSetting()
1628 Pair<Long, Long> backoff = mSyncStorageEngine.getBackoff(target); in isAdapterDelayed() local
1629 if (backoff != null && backoff.first != SyncStorageEngine.NOT_IN_BACKOFF_MODE in isAdapterDelayed()
1630 && backoff.first > now) { in isAdapterDelayed()
1663 Pair<Long, Long> backoff = mSyncStorageEngine.getBackoff(syncOperation.target); in scheduleSyncOperationH() local
[all …]
/frameworks/base/core/proto/android/server/
Djobscheduler.proto207 // The minimum backoff time to allow for linear backoff.
209 // The minimum backoff time to allow for exponential backoff.
/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/
DJobSchedulerService.java3015 long backoff = initialBackoffMillis;
3016 if (backoff < mConstants.MIN_LINEAR_BACKOFF_TIME_MS) {
3017 backoff = mConstants.MIN_LINEAR_BACKOFF_TIME_MS;
3019 delayMillis = backoff * backoffAttempts;
3028 long backoff = initialBackoffMillis;
3029 if (backoff < mConstants.MIN_EXP_BACKOFF_TIME_MS) {
3030 backoff = mConstants.MIN_EXP_BACKOFF_TIME_MS;
3032 delayMillis = (long) Math.scalb(backoff, backoffAttempts - 1);