Home
last modified time | relevance | path

Searched refs:RETRY_INTERVAL_MS (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/base/services/core/java/com/android/server/power/batterysaver/
H A DFileUpdater.java100 private final long RETRY_INTERVAL_MS; field in FileUpdater
118 RETRY_INTERVAL_MS = retryIntervalMs; in FileUpdater()
256 mHandler.postDelayed(mHandleWriteOnHandlerRunnable, RETRY_INTERVAL_MS); in scheduleRetry()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
H A DAbstractSessionStateMachine.java86 static final long RETRY_INTERVAL_MS = TimeUnit.SECONDS.toMillis(15L); field in AbstractSessionStateMachine
H A DChildSessionStateMachine.java1452 mCurrentChildSaRecord.rescheduleRekey(RETRY_INTERVAL_MS); in enterState()
1535 mCurrentChildSaRecord.rescheduleRekey(RETRY_INTERVAL_MS); in processStateMessage()
H A DIkeSessionStateMachine.java824 sendMessageDelayed(localRequest.procedureType, localRequest, RETRY_INTERVAL_MS); in scheduleRetry()
4463 mCurrentIkeSaRecord.rescheduleRekey(RETRY_INTERVAL_MS); in handleErrorNotifyIfExists()
4553 mCurrentIkeSaRecord.rescheduleRekey(RETRY_INTERVAL_MS); in enterState()
4566 mCurrentIkeSaRecord.rescheduleRekey(RETRY_INTERVAL_MS); in handleTempFailure()
/aosp12/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer2/
H A DExoPlayerSampleExtractor.java179 private static final int RETRY_INTERVAL_MS = 50; field in ExoPlayerSampleExtractor.SourceReaderWorker
303 MSG_FETCH_SAMPLES, RETRY_INTERVAL_MS); in handleMessage()
/aosp12/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/
H A DExoPlayerSampleExtractor.java179 private static final int RETRY_INTERVAL_MS = 50; field in ExoPlayerSampleExtractor.SourceReaderWorker
347 MSG_FETCH_SAMPLES, RETRY_INTERVAL_MS); in handleMessage()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCarrierPrivilegeRules.java118 private static final int RETRY_INTERVAL_MS = 5000; field in UiccCarrierPrivilegeRules
487 postDelayed(mRetryRunnable, RETRY_INTERVAL_MS); in handleMessage()
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/
H A DIkeSessionStateMachineTest.java42 import static com.android.internal.net.ipsec.test.ike.IkeSessionStateMachine.RETRY_INTERVAL_MS;
3731 verify(mSpyCurrentIkeSaRecord).rescheduleRekey(eq(RETRY_INTERVAL_MS)); in testRekeyIkeLocalCreateHandleRespWithNonFatalErrorNotify()
3847 RETRY_INTERVAL_MS); in mockRescheduleRekey()
3851 .rescheduleRekey(eq(RETRY_INTERVAL_MS)); in mockRescheduleRekey()
3869 verify(mSpyCurrentIkeSaRecord).rescheduleRekey(eq(RETRY_INTERVAL_MS)); in testRekeyIkeLocalCreateHandleRespWithTempFailure()
5240 while (currentTime + RETRY_INTERVAL_MS < TEMP_FAILURE_RETRY_TIMEOUT_MS) { in disableTestTempFailureHandlerTimeout()
5243 mLooper.moveTimeForward(RETRY_INTERVAL_MS); in disableTestTempFailureHandlerTimeout()
5244 currentTime += RETRY_INTERVAL_MS; in disableTestTempFailureHandlerTimeout()
5251 mLooper.moveTimeForward(RETRY_INTERVAL_MS); in disableTestTempFailureHandlerTimeout()
5274 verify(mSpyCurrentIkeSaRecord).rescheduleRekey(eq(RETRY_INTERVAL_MS)); in testTempFailureHandlerCancelTimer()
[all …]
H A DChildSessionStateMachineTest.java26 import static com.android.internal.net.ipsec.test.ike.AbstractSessionStateMachine.RETRY_INTERVAL_MS;
1221 verify(mSpyCurrentChildSaRecord).rescheduleRekey(eq(RETRY_INTERVAL_MS)); in testRekeyLocalCreateHandlesErrorNotifyResp()