Home
last modified time | relevance | path

Searched refs:maxRetryCount (Results 1 – 2 of 2) sorted by relevance

/packages/services/AlternativeNetworkAccess/tests/src/com/android/ons/
DONSProfileActivatorTest.java622 final int maxRetryCount = 5; in testESIMDownloadFailureAndRetry() local
629 .KEY_ESIM_MAX_DOWNLOAD_RETRY_ATTEMPTS_INT, maxRetryCount); in testESIMDownloadFailureAndRetry()
666 for (int idx = 0; idx <= maxRetryCount; idx++) { in testESIMDownloadFailureAndRetry()
682 verify(mMockONSProfileDownloader, times(maxRetryCount)).downloadProfile(TEST_SUBID_0); in testESIMDownloadFailureAndRetry()
/packages/services/Car/car-lib/src/android/car/
DCar.java1709 long maxRetryCount = 0; in createCar() local
1711 maxRetryCount = waitTimeoutMs / CAR_SERVICE_BINDER_POLLING_INTERVAL_MS; in createCar()
1713 if (maxRetryCount == 0) { in createCar()
1714 maxRetryCount = 1; in createCar()
1747 } else if (waitTimeoutMs >= 0 && retryCount > maxRetryCount) { in createCar()