Home
last modified time | relevance | path

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

/packages/modules/Connectivity/staticlibs/testutils/hostdevice/com/android/testutils/
DConcurrentUtils.kt43 maxRetryCount: Int, in await()
49 for (retryCount in 0 until maxRetryCount) { in await()
64 maxRetryCount: Int, in quitExecutorServices()
69 quitResources(maxRetryCount, supplier) { ecs -> in quitExecutorServices()
83 maxRetryCount: Int, in quitThreads()
88 quitResources(maxRetryCount, supplier) { th -> in quitThreads()
/packages/modules/Connectivity/tests/integration/src/com/android/server/net/integrationtests/
DNetworkStackInstrumentationService.kt87 maxRetryCount = 3, in <lambda>()
94 maxRetryCount = 3, in <lambda>()
/packages/services/AlternativeNetworkAccess/tests/src/com/android/ons/
DONSProfileActivatorTest.java663 final int maxRetryCount = 5; in testESIMDownloadFailureAndRetry() local
672 .KEY_ESIM_MAX_DOWNLOAD_RETRY_ATTEMPTS_INT, maxRetryCount); in testESIMDownloadFailureAndRetry()
709 for (int idx = 0; idx <= maxRetryCount; idx++) { in testESIMDownloadFailureAndRetry()
725 verify(mMockONSProfileDownloader, times(maxRetryCount)).downloadProfile(TEST_SUBID_0); in testESIMDownloadFailureAndRetry()
/packages/services/Car/car-lib/src/android/car/
DCar.java2083 long maxRetryCount = 0; in createCar() local
2085 maxRetryCount = waitTimeoutMs / CAR_SERVICE_BINDER_POLLING_INTERVAL_MS; in createCar()
2087 if (maxRetryCount == 0) { in createCar()
2088 maxRetryCount = 1; in createCar()
2122 } else if (waitTimeoutMs >= 0 && retryCount > maxRetryCount) { in createCar()