Home
last modified time | relevance | path

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

/cts/tests/tests/media/decoder/src/android/media/decoder/cts/
DDecodeAccuracyTest.java270 final int maxRetries = 3; in runTest() local
271 for (int retry = 1; retry <= maxRetries; retry++) { in runTest()
281 if (retry == maxRetries) { in runTest()
/cts/tests/PhotoPicker/src/android/photopicker/cts/
DPhotoPickerSettingsTest.java197 private void launchSettingsActivityWithRetry(long maxRetries, long backoffSeedInMillis) in launchSettingsActivityWithRetry() argument
199 for (int attempt = 0; attempt <= maxRetries; attempt++) { in launchSettingsActivityWithRetry()
/cts/tests/tests/nativemedia/aaudio/jni/
Dtest_aaudio.cpp158 int maxRetries = 10; // Try 10 times to get timestamp in testTimestamp() local
167 } while (result != AAUDIO_OK && --maxRetries > 0 && in testTimestamp()