Home
last modified time | relevance | path

Searched refs:REASON_STRINGS (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSelfRecoveryTest.java66 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_LAST_RESORT_WATCHDOG], false); in testValidTriggerReasonsSendMessageToWifiController()
73 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_WIFINATIVE_FAILURE], true); in testValidTriggerReasonsSendMessageToWifiController()
112 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_WIFINATIVE_FAILURE], true); in testTimeWindowLimiting_typicalUse()
120 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_WIFINATIVE_FAILURE], true); in testTimeWindowLimiting_typicalUse()
127 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_WIFINATIVE_FAILURE], true); in testTimeWindowLimiting_typicalUse()
134 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_LAST_RESORT_WATCHDOG], false); in testTimeWindowLimiting_typicalUse()
147 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_LAST_RESORT_WATCHDOG], false); in testTimeWindowLimiting_typicalUse()
154 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_WIFINATIVE_FAILURE], true); in testTimeWindowLimiting_typicalUse()
170 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_WIFINATIVE_FAILURE], true); in testTimeWindowLimiting_NativeFailureOff()
177 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_LAST_RESORT_WATCHDOG], false); in testTimeWindowLimiting_NativeFailureOff()
[all …]
DActiveModeWardenTest.java2199 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_WIFINATIVE_FAILURE], true); in testRestartWifiStackInDisabledState()
2233 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_WIFINATIVE_FAILURE], true); in testRestartWifiStackInStaScanEnabledState()
2271 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_WIFINATIVE_FAILURE], true); in testRestartWifiStackInStaConnectEnabledState()
2324 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_LAST_RESORT_WATCHDOG], false); in testRestartWifiStackDoesNotExitECMMode()
2349 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_WIFINATIVE_FAILURE], true); in testRestartWifiStackInTetheredSoftApEnabledState()
2390 SelfRecovery.REASON_STRINGS[SelfRecovery.REASON_WIFINATIVE_FAILURE], true); in testRestartWifiStackInTetheredSoftApAndStaConnectEnabledState()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSelfRecovery.java61 protected static final String[] REASON_STRINGS = { field in SelfRecovery
89 if (mSelfRecoveryReason < REASON_STRINGS.length && mSelfRecoveryReason >= 0) { in onSubsystemRestart()
90 reasonString = REASON_STRINGS[mSelfRecoveryReason]; in onSubsystemRestart()
138 Log.e(TAG, "Triggering recovery for reason: " + REASON_STRINGS[reason]); in trigger()