Home
last modified time | relevance | path

Searched refs:retryIntervalMs (Results 1 – 3 of 3) sorted by relevance

/packages/modules/DnsResolver/tests/
Dresolv_test_utils.cpp141 constexpr std::chrono::milliseconds retryIntervalMs{5}; in PollForCondition() local
145 std::this_thread::sleep_for(retryIntervalMs); in PollForCondition()
Dresolv_gold_test.cpp126 constexpr milliseconds retryIntervalMs{20}; in WaitForPrivateDnsValidation() local
135 std::this_thread::sleep_for(retryIntervalMs); in WaitForPrivateDnsValidation()
/packages/services/Car/service/src/com/android/car/power/
DCarPowerManagementService.java2037 long retryIntervalMs = INITIAL_SUSPEND_RETRY_INTERVAL_MS; in suspendWithRetries() local
2063 Slogf.w(TAG, "Failed to Suspend; will retry after %dms", retryIntervalMs); in suspendWithRetries()
2065 mLock.wait(retryIntervalMs); in suspendWithRetries()
2069 totalWaitDurationMs += retryIntervalMs; in suspendWithRetries()
2070 retryIntervalMs = Math.min(retryIntervalMs * 2, MAX_RETRY_INTERVAL_MS); in suspendWithRetries()