Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/content/
DSyncQueue.java65 final Pair<Long, Long> backoff = mSyncStorageEngine.getBackoff(info); in addPendingOperations() local
81 backoff != null ? backoff.first : 0L, in addPendingOperations()
100 backoff != null ? backoff.first : 0, in addPendingOperations()
194 op.backoff = 0L; in clearBackoffs()
199 public void onBackoffChanged(SyncStorageEngine.EndPoint target, long backoff) { in onBackoffChanged() argument
204 op.backoff = backoff; in onBackoffChanged()
DSyncOperation.java79 public long backoff; field in SyncOperation
97 Bundle extras, long runTimeFromNow, long flexTime, long backoff, in SyncOperation() argument
100 reason, source, extras, runTimeFromNow, flexTime, backoff, delayUntil, in SyncOperation()
105 Bundle extras, long runTimeFromNow, long flexTime, long backoff, in SyncOperation() argument
108 runTimeFromNow, flexTime, backoff, delayUntil, true /* allowParallelSyncs */); in SyncOperation()
112 long runTimeFromNow, long flexTime, long backoff, long delayUntil, in SyncOperation() argument
120 this.backoff = backoff; in SyncOperation()
148 other.backoff, in SyncOperation()
350 Math.max(Math.max(latestRunTime, delayUntil), backoff); in updateEffectiveRunTime()
DSyncManager.java679 Pair<Long, Long> backoff = mSyncStorageEngine.getBackoff(info); in scheduleSync() local
681 final long backoffTime = backoff != null ? backoff.first : 0; in scheduleSync()
857 Pair<Long, Long> backoff = mSyncStorageEngine.getBackoff(info); in scheduleSync() local
860 final long backoffTime = backoff != null ? backoff.first : 0; in scheduleSync()
1067 final long backoff = now + newDelayInMs; in increaseBackoffSetting() local
1069 mSyncStorageEngine.setBackoff(op.target, backoff, newDelayInMs); in increaseBackoffSetting()
1070 op.backoff = backoff; in increaseBackoffSetting()
1074 mSyncQueue.onBackoffChanged(op.target, backoff); in increaseBackoffSetting()
2476 final Pair<Long, Long> backoff = in scheduleReadyPeriodicSyncs() local
2496 backoff != null ? backoff.first : 0, in scheduleReadyPeriodicSyncs()
[all …]
/frameworks/ex/common/java/com/android/common/
DOperationScheduler.java182 long backoff = options.backoffFixedMillis + in getNextTimeMillis() local
188 if (moratoriumTimeMillis > 0 && backoff > moratoriumTimeMillis) { in getNextTimeMillis()
189 backoff = moratoriumTimeMillis; in getNextTimeMillis()
192 time = Math.max(time, lastErrorTimeMillis + backoff); in getNextTimeMillis()
/frameworks/base/services/tests/servicestests/src/com/android/server/content/
DSyncOperationTest.java185 copy.backoff == eightSeconds); in testCopyConstructor()
/frameworks/base/docs/html/training/volley/
Dindex.jd49 <li>Ease of customization, for example, for retry and backoff.</li>
/frameworks/base/docs/html/training/safetynet/
Dindex.jd261 "https://developers.google.com/api-client-library/java/google-http-java-client/backoff">
262 …exponential backoff</a> technique for retries, to avoid flooding the service with additional reque…
/frameworks/base/services/backup/java/com/android/server/backup/
DBackupManagerService.java4049 long backoff = 0; in run() local
4157 backoff = transport.requestFullBackupTime(); in run()
4159 Slog.i(TAG, "Transport suggested backoff=" + backoff); in run()
4217 scheduleNextFullBackupJob(backoff); in run()
/frameworks/base/docs/html/google/play/licensing/
Dadding-licensing.jd225 <li>Uses an exponential backoff period, if retrying any requests the result in