/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
WifiStateMachineTest.java | 94 * Unit tests for {@link com.android.server.wifi.WifiStateMachine}. 104 ? WifiStateMachine.NUM_LOG_RECS_VERBOSE_LOW_MEMORY 105 : WifiStateMachine.NUM_LOG_RECS_VERBOSE); 255 private static HandlerThread getWsmHandlerThread(WifiStateMachine wsm) throws 276 Log.d(TAG, "WifiStateMachine state -" + stream.toString()); 305 WifiStateMachine mWsm; 376 mWsm = new WifiStateMachine(context, factory, mLooper.getLooper(), 425 mWsm.sendMessage(WifiStateMachine.CMD_BOOT_COMPLETED); 480 * InitialState by WifiStateMachine. 490 assertEquals(WifiStateMachine.CONNECT_MODE, mWsm.getOperationalModeForTest()) [all...] |
WifiControllerTest.java | 66 Log.d(TAG, "WifiStateMachine state -" + stream.toString()); 86 @Mock WifiStateMachine mWifiStateMachine; 269 inOrder.verify(mWifiStateMachine).setOperationalMode(WifiStateMachine.CONNECT_MODE); 297 inOrder.verify(mWifiStateMachine).setOperationalMode(WifiStateMachine.CONNECT_MODE); 331 inOrder.verify(mWifiStateMachine).setOperationalMode(WifiStateMachine.CONNECT_MODE); 343 * Expected: WiFiController should not call WifiStateMachine.setSupplicantRunning(false) 374 * Expected: WiFiController should not call WifiStateMachine.setSupplicantRunning(false) 386 * The command to trigger a WiFi reset should trigger a wifi reset in WifiStateMachine through 387 * the WifiStateMachine.setSupplicantRunning(false) call when in STA mode. 392 * Expected: WiFiController should call WifiStateMachine.setSupplicantRunning(false) [all...] |
WifiNotificationControllerTest.java | 57 @Mock private WifiStateMachine mWifiStateMachine;
|
WifiConnectivityManagerTest.java | 20 import static com.android.server.wifi.WifiStateMachine.WIFI_WORK_SOURCE; 97 private WifiStateMachine mWifiStateMachine; 183 WifiStateMachine mockWifiStateMachine() { 184 WifiStateMachine stateMachine = mock(WifiStateMachine.class); 255 * WifiStateMachine.autoConnectToNetwork() with the 275 * WifiStateMachine.autoConnectToNetwork() with the 295 * WifiStateMachine.autoConnectToNetwork() with the 315 * WifiStateMachine.autoConnectToNetwork() with the 336 * WifiStateMachine.autoConnectToNetwork() because roamin [all...] |
WifiLoggerTest.java | 55 @Mock WifiStateMachine mWsm;
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
WifiController.java | 51 * WifiController is the class used to manage on/off state of WifiStateMachine for various operating 96 private final WifiStateMachine mWifiStateMachine; 146 WifiController(Context context, WifiStateMachine wsm, WifiSettingsStore wss, 585 mWifiStateMachine.setOperationalMode(WifiStateMachine.SCAN_ONLY_WITH_WIFI_OFF_MODE); [all...] |
WifiNotificationController.java | 92 private final WifiStateMachine mWifiStateMachine; 98 WifiNotificationController(Context context, Looper looper, WifiStateMachine wsm,
|
FrameworkFacade.java | 52 Context context, WifiStateMachine stateMachine, WifiNative wifiNative,
|
SupplicantStateTracker.java | 232 case WifiStateMachine.CMD_RESET_SUPPLICANT_STATE: 358 case WifiStateMachine.CMD_RESET_SUPPLICANT_STATE:
|
WifiLogger.java | 105 private WifiStateMachine mWifiStateMachine; 110 public WifiLogger(Context context, WifiStateMachine wifiStateMachine, WifiNative wifiNative, 117 mWifiStateMachine = wifiStateMachine; 390 WifiStateMachine.CMD_FIRMWARE_ALERT, errorCode, 0, buffer);
|
WifiMonitor.java | [all...] |
WifiConnectivityManager.java | 19 import static com.android.server.wifi.WifiStateMachine.WIFI_WORK_SOURCE; 110 // WifiStateMachine has a bunch of states. From the 125 private final WifiStateMachine mStateMachine; 510 public WifiConnectivityManager(Context context, WifiStateMachine stateMachine, [all...] |
WifiStateMachine.java | 144 * The WifiStateMachine handles SoftAp and Client operations while WifiP2pService 149 public class WifiStateMachine extends StateMachine implements WifiNative.WifiRssiEventHandler { 158 private static final String TAG = "WifiStateMachine"; 558 // WifiStateMachine starts up 713 * In no valid case, the WiFiStateMachine should remain stuck in ObtainingIpAddress [all...] |
WifiServiceImpl.java | 128 final WifiStateMachine mWifiStateMachine; 159 * Asynchronous channel to WifiStateMachine 270 * Handles interaction with WifiStateMachine 288 Slog.e(TAG, "WifiStateMachine connection failure, error=" + msg.arg1); 294 Slog.e(TAG, "WifiStateMachine channel lost, msg.arg1 =" + msg.arg1); 323 HandlerThread wifiStateMachineThread = new HandlerThread("WifiStateMachine"); 331 mWifiStateMachine = new WifiStateMachine(mContext, mFacade, [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/ |
WifiP2pServiceImpl.java | 81 import com.android.server.wifi.WifiStateMachine; 153 /* Commands to the WifiStateMachine */ 471 * Get a reference to handler. This is used by a WifiStateMachine to establish 523 * Handles interaction with WifiStateMachine 678 if (DBG) logd("Full connection with WifiStateMachine established"); [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/ |
WifiScanningServiceImpl.java | 59 import com.android.server.wifi.WifiStateMachine; [all...] |