Searched refs:backoffTime (Results 1 – 3 of 3) sorted by relevance
215 long backoffTime; field in SyncStorageEngine.AuthorityInfo234 backoffTime = toCopy.backoffTime; in AuthorityInfo()261 backoffTime = -1; // if < 0 then we aren't in backoff mode in AuthorityInfo()287 backoffTime = -1; // if < 0 then we aren't in backoff mode in AuthorityInfo()660 if (authority == null || authority.backoffTime < 0) { in getBackoff()663 return Pair.create(authority.backoffTime, authority.backoffDelay); in getBackoff()687 if (authorityInfo.backoffTime != nextSyncTime in setBackoff()689 authorityInfo.backoffTime = nextSyncTime; in setBackoff()699 if (authority.backoffTime == nextSyncTime && authority.backoffDelay == nextDelay) { in setBackoff()702 authority.backoffTime = nextSyncTime; in setBackoff()[all …]
706 final long backoffTime = backoff != null ? backoff.first : 0; in scheduleSync() local723 backoffTime, delayUntil, allowParallelSyncs)); in scheduleSync()739 backoffTime, delayUntil, allowParallelSyncs)); in scheduleSync()1329 if (settings.backoffTime > now) { in dumpSyncState()1330 table.set(row1++, 12, "B: " + (settings.backoffTime - now) / 1000); in dumpSyncState()
1189 int backoffTime = (pinState.failedAttempts % BACKOFF_INC_INTERVAL) == 0 ? in getRemainingTimeForPinAttempt() local1191 return (int) Math.max(backoffTime + pinState.lastAttemptTime - System.currentTimeMillis(), in getRemainingTimeForPinAttempt()