Home
last modified time | relevance | path

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

/packages/services/Iwlan/src/com/google/android/iwlan/
DErrorPolicyManager.java415 public synchronized int getCurrentFqdnIndex(int numFqdns) { in getCurrentFqdnIndex() method in ErrorPolicyManager
418 return lastRetryAction == null ? -1 : lastRetryAction.getCurrentFqdnIndex(numFqdns); in getCurrentFqdnIndex()
909 int getCurrentFqdnIndex(int retryIndex, int numFqdns) { in getCurrentFqdnIndex() method in ErrorPolicyManager.ErrorPolicy
1048 int getCurrentFqdnIndex(int numFqdns); in getCurrentFqdnIndex() method
1062 public int getCurrentFqdnIndex(int numFqdns) { in getCurrentFqdnIndex() method in ErrorPolicyManager.PolicyDerivedRetryAction
1064 return errorPolicy.getCurrentFqdnIndex(currentRetryIndex(), numFqdns); in getCurrentFqdnIndex()
1104 public int getCurrentFqdnIndex(int numFqdns) { in getCurrentFqdnIndex() method in ErrorPolicyManager.IkeBackoffNotifyRetryAction
/packages/services/Iwlan/test/com/google/android/iwlan/
DErrorPolicyManagerTest.java1142 assertEquals(0, mErrorPolicyManager.getCurrentFqdnIndex(2)); in testErrorPolicyWithNumAttemptsPerFqdn()
1147 assertEquals(1, mErrorPolicyManager.getCurrentFqdnIndex(2)); in testErrorPolicyWithNumAttemptsPerFqdn()
1151 assertEquals(1, mErrorPolicyManager.getCurrentFqdnIndex(2)); in testErrorPolicyWithNumAttemptsPerFqdn()
1165 assertEquals(0, mErrorPolicyManager.getCurrentFqdnIndex(2)); in testErrorPolicyWithNumAttemptsPerFqdn()
/packages/services/Iwlan/src/com/google/android/iwlan/epdg/
DEpdgSelector.java1365 int index = mErrorPolicyManager.getCurrentFqdnIndex(numFqdns); in getValidatedServerList()
/packages/services/Iwlan/test/com/google/android/iwlan/epdg/
DEpdgSelectorTest.java1071 when(mMockErrorPolicyManager.getCurrentFqdnIndex(anyInt())).thenReturn(0); in testGetValidatedServerListIpv4OnlyCongestion()