OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WifiController
(Results
1 - 5
of
5
) sorted by null
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiControllerTest.java
21
import static com.android.server.wifi.
WifiController
.CMD_AP_STOPPED;
22
import static com.android.server.wifi.
WifiController
.CMD_DEVICE_IDLE;
23
import static com.android.server.wifi.
WifiController
.CMD_EMERGENCY_CALL_STATE_CHANGED;
24
import static com.android.server.wifi.
WifiController
.CMD_EMERGENCY_MODE_CHANGED;
25
import static com.android.server.wifi.
WifiController
.CMD_RESTART_WIFI;
26
import static com.android.server.wifi.
WifiController
.CMD_SET_AP;
27
import static com.android.server.wifi.
WifiController
.CMD_WIFI_TOGGLED;
54
* Test
WifiController
for changes in and out of ECM and SoftAP modes.
89
WifiController
mWifiController;
101
mWifiController = new
WifiController
(mContext, mWifiStateMachine
[
all
...]
WifiLastResortWatchdogTest.java
44
@Mock
WifiController
mWifiController;
[
all
...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiServiceImpl.java
19
import static com.android.server.wifi.
WifiController
.CMD_AIRPLANE_TOGGLED;
20
import static com.android.server.wifi.
WifiController
.CMD_BATTERY_CHANGED;
21
import static com.android.server.wifi.
WifiController
.CMD_EMERGENCY_CALL_STATE_CHANGED;
22
import static com.android.server.wifi.
WifiController
.CMD_EMERGENCY_MODE_CHANGED;
23
import static com.android.server.wifi.
WifiController
.CMD_LOCKS_CHANGED;
24
import static com.android.server.wifi.
WifiController
.CMD_SCAN_ALWAYS_MODE_CHANGED;
25
import static com.android.server.wifi.
WifiController
.CMD_SCREEN_OFF;
26
import static com.android.server.wifi.
WifiController
.CMD_SCREEN_ON;
27
import static com.android.server.wifi.
WifiController
.CMD_SET_AP;
28
import static com.android.server.wifi.
WifiController
.CMD_USER_PRESENT
[
all
...]
WifiLastResortWatchdog.java
83
private
WifiController
mWifiController = null;
336
Log.e(TAG, "WifiLastResortWatchdog unable to trigger:
WifiController
is null");
342
mWifiController.sendMessage(
WifiController
.CMD_RESTART_WIFI);
552
* Method used to set the
WifiController
for the this watchdog.
554
* The
WifiController
is used to send the restart wifi command to carry out the wifi restart.
555
* @param
wifiController
WifiController
instance that will be sent the CMD_RESTART_WIFI message.
557
public void setWifiController(
WifiController
wifiController
) {
558
mWifiController =
wifiController
;
[
all
...]
WifiController.java
51
*
WifiController
is the class used to manage on/off state of WifiStateMachine for various operating
54
public class
WifiController
extends StateMachine {
55
private static final String TAG = "
WifiController
";
146
WifiController
(Context context, WifiStateMachine wsm, WifiSettingsStore wss,
425
throw new RuntimeException("
WifiController
.handleMessage " + msg.what);
507
log("
WifiController
msg " + msg + " deferred for " +
555
log("
WifiController
msg " + msg + " getConfigWiFiDisableInECBM "
653
log("
WifiController
msg " + msg + " deferred for " +
[
all
...]
Completed in 170 milliseconds