Home
last modified time | relevance | path

Searched refs:REASON_LAST_RESORT_WATCHDOG (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSelfRecoveryTest.java100 mSelfRecovery.trigger(SelfRecovery.REASON_LAST_RESORT_WATCHDOG); in testValidTriggerReasonsSendMessageToWifiController()
101 verify(mActiveModeWarden).recoveryRestartWifi(SelfRecovery.REASON_LAST_RESORT_WATCHDOG, in testValidTriggerReasonsSendMessageToWifiController()
176 mSelfRecovery.trigger(SelfRecovery.REASON_LAST_RESORT_WATCHDOG); in testTimeWindowLimiting_typicalUse()
177 verify(mActiveModeWarden).recoveryRestartWifi(SelfRecovery.REASON_LAST_RESORT_WATCHDOG, in testTimeWindowLimiting_typicalUse()
195 mSelfRecovery.trigger(SelfRecovery.REASON_LAST_RESORT_WATCHDOG); in testTimeWindowLimiting_typicalUse()
196 verify(mActiveModeWarden).recoveryRestartWifi(SelfRecovery.REASON_LAST_RESORT_WATCHDOG, in testTimeWindowLimiting_typicalUse()
231 mSelfRecovery.trigger(SelfRecovery.REASON_LAST_RESORT_WATCHDOG); in testTimeWindowLimiting_NativeFailureOff()
232 verify(mActiveModeWarden).recoveryRestartWifi(SelfRecovery.REASON_LAST_RESORT_WATCHDOG, in testTimeWindowLimiting_NativeFailureOff()
245 mSelfRecovery.trigger(SelfRecovery.REASON_LAST_RESORT_WATCHDOG); in testTimeWindowLimiting_lastResortWatchdog_noEffect()
246 verify(mActiveModeWarden).recoveryRestartWifi(SelfRecovery.REASON_LAST_RESORT_WATCHDOG, in testTimeWindowLimiting_lastResortWatchdog_noEffect()
[all …]
DActiveModeWardenTest.java2476 mActiveModeWarden.recoveryRestartWifi(SelfRecovery.REASON_LAST_RESORT_WATCHDOG, in testRestartWifiStackInEnabledStateTriggersBugReport()
2691 mActiveModeWarden.recoveryRestartWifi(SelfRecovery.REASON_LAST_RESORT_WATCHDOG, in testRestartWifiStackDoesNotExitECMMode()
DWifiLastResortWatchdogTest.java1353 verify(mSelfRecovery).trigger(eq(SelfRecovery.REASON_LAST_RESORT_WATCHDOG)); in incrementFailuresUntilTrigger()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSelfRecovery.java47 public static final int REASON_LAST_RESORT_WATCHDOG = 0; field in SelfRecovery
56 REASON_LAST_RESORT_WATCHDOG,
98 case REASON_LAST_RESORT_WATCHDOG: in getRecoveryReasonAsString()
149 reason != REASON_LAST_RESORT_WATCHDOG && reason != REASON_API_CALL); in onSubsystemRestart()
197 if (!(reason == REASON_LAST_RESORT_WATCHDOG || reason == REASON_WIFINATIVE_FAILURE in trigger()
288 case SelfRecovery.REASON_LAST_RESORT_WATCHDOG: in convertSelfRecoveryReason()
DWifiLastResortWatchdog.java366 mWifiInjector.getSelfRecovery().trigger(SelfRecovery.REASON_LAST_RESORT_WATCHDOG); in noteConnectionFailureAndTriggerIfNeeded()