Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/dialer/common/backoff/
DExponentialBackoff.java40 public final class ExponentialBackoff { class
53 public ExponentialBackoff(long initialDelayMillis, double baseMultiplier, int maximumBackoffs) { in ExponentialBackoff() method in ExponentialBackoff
/packages/services/Telephony/src/com/android/phone/satellite/entitlement/
DSatelliteEntitlementController.java43 import com.android.internal.telephony.ExponentialBackoff;
95 private Map<Integer, ExponentialBackoff> mExponentialBackoffPerSub = new HashMap<>();
374 ExponentialBackoff exponentialBackoff = null; in handleCmdRetryQueryEntitlement()
430 ExponentialBackoff exponentialBackoff = null; in startExponentialBackoff()
434 new ExponentialBackoff(INITIAL_DELAY_MILLIS, MAX_DELAY_MILLIS, in startExponentialBackoff()
/packages/services/Telephony/tests/src/com/android/phone/satellite/entitlement/
DSatelliteEntitlementControllerTest.java63 import com.android.internal.telephony.ExponentialBackoff;
599 Map<Integer, ExponentialBackoff> exponentialBackoffPerSub = in testStartQueryEntitlementStatus_otherError_retrySuccess()
600 (Map<Integer, ExponentialBackoff>) getValue("mExponentialBackoffPerSub"); in testStartQueryEntitlementStatus_otherError_retrySuccess()
/packages/services/Telephony/src/com/android/services/telephony/
DTelecomAccountRegistry.java66 import com.android.internal.telephony.ExponentialBackoff;
1289 private ExponentialBackoff mRegisterSubscriptionListenerBackoff;
1316 mRegisterSubscriptionListenerBackoff = new ExponentialBackoff( in TelecomAccountRegistry()