Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/pm/
DVendorServiceInfoTest.java203 assertThat(info.getMaxRetries()).isEqualTo(MAX_RETRIES); in testGetMaxRetries()
210 assertThat(info.getMaxRetries()).isEqualTo(VendorServiceInfo.DEFAULT_MAX_RETRIES); in testGetMaxRetries_defaultMaxRetries()
225 assertThat(info.getMaxRetries()).isEqualTo(MAX_RETRIES); in allArgs()
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
DRetryLaunchActivity.java103 final int maxRetries = getMaxRetries(intent); in createConfigFromIntent()
118 private int getMaxRetries(Intent intent) {
/packages/services/Car/service/src/com/android/car/pm/
DVendorServiceController.java653 INITIAL_REBIND_DELAY_MS * (1 << (mVendorServiceInfo.getMaxRetries() + 1)); in scheduleResetFailureCounter()
668 } else if (mRecentFailures < mVendorServiceInfo.getMaxRetries()) { in handleFailureMessage()
671 + " out of " + mVendorServiceInfo.getMaxRetries() + " max tries)"); in handleFailureMessage()
676 + mVendorServiceInfo.getMaxRetries() + ") to rebind to the service " in handleFailureMessage()
DVendorServiceInfo.java143 int getMaxRetries() { in getMaxRetries() method in VendorServiceInfo