OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:setNetworkVariable
(Results
1 - 8
of
8
) sorted by null
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiConfigStore.java
616
if (config.SSID != null && !mWifiNative.
setNetworkVariable
(
629
if (!mWifiNative.
setNetworkVariable
(netId, WifiConfiguration.bssidVarName, bssid)) {
636
if (config.allowedKeyManagement.cardinality() != 0 && !mWifiNative.
setNetworkVariable
(
645
if (config.allowedProtocols.cardinality() != 0 && !mWifiNative.
setNetworkVariable
(
655
if (config.allowedAuthAlgorithms.cardinality() != 0 && !mWifiNative.
setNetworkVariable
(
664
if (config.allowedPairwiseCiphers.cardinality() != 0 && !mWifiNative.
setNetworkVariable
(
678
if (config.allowedGroupCiphers.cardinality() != 0 && !mWifiNative.
setNetworkVariable
(
688
&& !mWifiNative.
setNetworkVariable
(
701
if (!mWifiNative.
setNetworkVariable
(
713
if (!mWifiNative.
setNetworkVariable
(
[
all
...]
WifiNative.java
421
return
setNetworkVariable
(netId, name, "\"" + encoded + "\"");
424
public boolean
setNetworkVariable
(int netId, String name, String value) {
[
all
...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiNativeTest.java
131
when(mWifiNative.
setNetworkVariable
(anyInt(), anyString(), anyString())).thenReturn(true);
134
verify(mWifiNative).
setNetworkVariable
(NETWORK_ID, NETWORK_EXTRAS_VARIABLE,
WifiStateMachineTest.java
557
when(mWifiNative.
setNetworkVariable
(anyInt(), anyString(), anyString()))
610
verify(mWifiNative).
setNetworkVariable
(0, "ssid", sHexSSID);
612
verify(mWifiNative).
setNetworkVariable
(0, "scan_ssid", Integer.toString(1));
637
verify(mWifiNative, never()).
setNetworkVariable
(anyInt(), anyString(), anyString());
[
all
...]
WifiConfigManagerTest.java
228
when(mWifiNative.
setNetworkVariable
(anyInt(), anyString(), anyString())).thenReturn(true);
458
when(mWifiNative.
setNetworkVariable
(eq(network), anyString(), anyString()))
489
verify(mWifiNative, never()).
setNetworkVariable
(intThat(not(network)), anyString(),
[
all
...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
SupplicantPnoScannerTest.java
278
when(mWifiNative.
setNetworkVariable
(anyInt(), anyString(), anyString())).thenReturn(true);
308
order.verify(mWifiNative).
setNetworkVariable
(network.networkId,
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
SupplicantWifiScannerImpl.java
662
if (!mWifiNative.
setNetworkVariable
(network.networkId,
[
all
...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
WifiP2pServiceImpl.java
[
all
...]
Completed in 268 milliseconds