Searched refs:backoff (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/content/ |
D | SyncOperation.java | 37 public Long backoff; field in SyncOperation 42 long delayInMs, long backoff, long delayUntil, boolean allowParallelSyncs) { in SyncOperation() argument 57 this.backoff = backoff; in SyncOperation() 83 this.backoff = other.backoff; in SyncOperation() 142 backoff); in updateEffectiveRunTime()
|
D | SyncQueue.java | 52 final Pair<Long, Long> backoff = syncStorageEngine.getBackoff(op.account, op.authority); in SyncQueue() local 61 backoff != null ? backoff.first : 0, in SyncQueue() 134 public void onBackoffChanged(Account account, String providerName, long backoff) { in onBackoffChanged() argument 139 op.backoff = backoff; in onBackoffChanged()
|
D | SyncManager.java | 611 Pair<Long, Long> backoff = mSyncStorageEngine.getBackoff(account, authority); in scheduleSync() local 613 final long backoffTime = backoff != null ? backoff.first : 0; in scheduleSync() 753 final long backoff = now + newDelayInMs; in increaseBackoffSetting() local 756 backoff, newDelayInMs); in increaseBackoffSetting() 758 op.backoff = backoff; in increaseBackoffSetting() 762 mSyncQueue.onBackoffChanged(op.account, op.authority, backoff); in increaseBackoffSetting() 874 operation.backoff, operation.delayUntil, operation.allowParallelSyncs)); in maybeRescheduleSync() 1761 final Pair<Long, Long> backoff = in scheduleReadyPeriodicSyncs() local 1772 backoff != null ? backoff.first : 0, in scheduleReadyPeriodicSyncs() 2160 syncOperation.backoff, syncOperation.delayUntil,
|
/frameworks/base/docs/html/guide/publishing/ |
D | licensing.jd | 906 <li>Uses an exponential backoff period, if retrying any requests the result in
|