HomeSort by relevance Sort by last modified time
    Searched refs:SelfRecovery (Results 1 - 13 of 13) sorted by null

  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
SelfRecoveryTest.java 29 * Unit tests for {@link com.android.server.wifi.SelfRecovery}.
33 SelfRecovery mSelfRecovery;
40 mSelfRecovery = new SelfRecovery(mWifiController, mClock);
44 * Verifies that invocations of {@link SelfRecovery#trigger(int)} with valid reasons will send
49 mSelfRecovery.trigger(SelfRecovery.REASON_LAST_RESORT_WATCHDOG);
54 .thenReturn(SelfRecovery.MAX_RESTARTS_TIME_WINDOW_MILLIS + 1);
55 mSelfRecovery.trigger(SelfRecovery.REASON_WIFINATIVE_FAILURE);
61 * Verifies that invocations of {@link SelfRecovery#trigger(int)} with invalid reasons will not
78 mSelfRecovery.trigger(SelfRecovery.REASON_STA_IFACE_DOWN);
83 * Verifies that invocations of {@link SelfRecovery#trigger(int)} for REASON_HAL_CRASH
    [all...]
ClientModeManagerTest.java 269 verify(mWifiStateMachine).failureDetected(eq(SelfRecovery.REASON_STA_IFACE_DOWN));
285 verify(mWifiStateMachine, never()).failureDetected(eq(SelfRecovery.REASON_STA_IFACE_DOWN));
WifiStateMachinePrimeTest.java 66 @Mock SelfRecovery mSelfRecovery;
575 verify(mSelfRecovery).trigger(eq(SelfRecovery.REASON_WIFINATIVE_FAILURE));
587 verify(mSelfRecovery, never()).trigger(eq(SelfRecovery.REASON_WIFINATIVE_FAILURE));
WifiControllerTest.java 809 SelfRecovery.REASON_WIFINATIVE_FAILURE);
818 SelfRecovery.REASON_LAST_RESORT_WATCHDOG);
    [all...]
WifiLastResortWatchdogTest.java 45 @Mock SelfRecovery mSelfRecovery;
    [all...]
WifiStateMachineTest.java 359 @Mock SelfRecovery mSelfRecovery;
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
SelfRecovery.java 33 public class SelfRecovery {
54 public SelfRecovery(WifiController wifiController, Clock clock) {
WifiController.java 95 // Command to disable wifi when SelfRecovery is throttled or otherwise not doing full recovery
696 if (msg.arg1 < SelfRecovery.REASON_STRINGS.length && msg.arg1 >= 0) {
697 bugDetail = SelfRecovery.REASON_STRINGS[msg.arg1];
703 if (msg.arg1 != SelfRecovery.REASON_LAST_RESORT_WATCHDOG) {
WifiLastResortWatchdog.java 90 private SelfRecovery mSelfRecovery;
100 WifiLastResortWatchdog(SelfRecovery selfRecovery, Clock clock, WifiMetrics wifiMetrics,
102 mSelfRecovery = selfRecovery;
228 mSelfRecovery.trigger(SelfRecovery.REASON_LAST_RESORT_WATCHDOG);
WifiInjector.java 135 private final SelfRecovery mSelfRecovery;
295 mSelfRecovery = new SelfRecovery(mWifiController, mClock);
596 public SelfRecovery getSelfRecovery() {
WifiStateMachinePrime.java 62 private final SelfRecovery mSelfRecovery;
609 // immediately trigger SelfRecovery if we receive a notice about an
611 mWifiInjector.getSelfRecovery().trigger(SelfRecovery.REASON_WIFINATIVE_FAILURE);
ClientModeManager.java 292 Log.e(TAG, "Detected an interface down, reporting failure to SelfRecovery");
293 mWifiStateMachine.failureDetected(SelfRecovery.REASON_STA_IFACE_DOWN);
WifiStateMachine.java     [all...]

Completed in 298 milliseconds