OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:doBooleanCommand
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/jni/
android_net_wifi_Wifi.cpp
71
static jboolean
doBooleanCommand
(const char* expect, const char* fmt, ...)
134
return
doBooleanCommand
("OK", "TERMINATE");
180
return
doBooleanCommand
("OK", "WPS_PBC %s", bssid.c_str());
194
return
doBooleanCommand
("OK", "WPS_REG %s %s", bssid.c_str(), apPin.c_str());
212
return
doBooleanCommand
("OK", "DRIVER COUNTRY %s", country.c_str());
229
return
doBooleanCommand
("OK", "SET_NETWORK %d %s %s", netId, name.c_str(), value.c_str());
246
return
doBooleanCommand
("OK", "REMOVE_NETWORK %d", netId);
254
return
doBooleanCommand
("OK", "%s_NETWORK %d", disableOthers ? "SELECT" : "ENABLE", netId);
259
return
doBooleanCommand
("OK", "DISABLE_NETWORK %d", netId);
269
return
doBooleanCommand
("PONG", "PING")
[
all
...]
/frameworks/base/wifi/java/android/net/wifi/
WifiNative.java
42
* be able to get everything done with
doBooleanCommand
, doIntCommand and
200
private native static boolean
doBooleanCommand
(String command);
217
return
doBooleanCommand
("WPS_PBC");
221
return
doBooleanCommand
("WPS_PIN any " + pin);
226
return WifiNative.
doBooleanCommand
("SET persistent_reconnect " + value);
230
return WifiNative.
doBooleanCommand
("SET device_name " + name);
234
return WifiNative.
doBooleanCommand
("SET device_type " + type);
238
return
doBooleanCommand
("P2P_FIND");
245
return
doBooleanCommand
("P2P_FIND " + timeout);
249
return
doBooleanCommand
("P2P_LISTEN")
[
all
...]
Completed in 206 milliseconds