Searched refs:newDelayInMs (Results 1 – 1 of 1) sorted by relevance
1251 long newDelayInMs = -1; in increaseBackoffSetting() local1263 newDelayInMs = previousSettings.second * 2; in increaseBackoffSetting()1265 if (newDelayInMs <= 0) { in increaseBackoffSetting()1267 newDelayInMs = jitterize(INITIAL_SYNC_RETRY_TIME_IN_MS, in increaseBackoffSetting()1275 if (newDelayInMs > maxSyncRetryTimeInSeconds * 1000) { in increaseBackoffSetting()1276 newDelayInMs = maxSyncRetryTimeInSeconds * 1000; in increaseBackoffSetting()1279 final long backoff = now + newDelayInMs; in increaseBackoffSetting()1281 Slog.v(TAG, "Backoff until: " + backoff + ", delayTime: " + newDelayInMs); in increaseBackoffSetting()1283 mSyncStorageEngine.setBackoff(target, backoff, newDelayInMs); in increaseBackoffSetting()