Searched defs:backoff (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/java/com/android/server/content/
H A DSyncQueue.java65 final Pair<Long, Long> backoff = mSyncStorageEngine.getBackoff(
76 0 /* delay */, 0 /* flex */, backoff != null ? backoff.first : 0,
167 public void onBackoffChanged(Account account, int userId, String providerName, long backoff) { argument
169 // backoff and effectiveStartTime
173 op.backoff = backoff;
H A DSyncOperation.java74 public Long backoff; field in class:SyncOperation
79 * Depends on max(backoff, latestRunTime, and delayUntil).
86 Bundle extras, long runTimeFromNow, long flexTime, long backoff,
98 this.backoff = backoff;
153 this.backoff = other.backoff;
261 * creation time of sync), delayUntil (specified by SyncAdapter), or backoff (specified by
265 // Regardless of whether we're in backoff or honouring a delayUntil, we still incorporate
269 Math.max(Math.max(latestRunTime, delayUntil), backoff);
85 SyncOperation(Account account, int userId, int reason, int source, String authority, Bundle extras, long runTimeFromNow, long flexTime, long backoff, long delayUntil, boolean allowParallelSyncs) argument
[all...]

Completed in 41 milliseconds