Searched refs:getNetworkVariable (Results 1 – 6 of 6) sorted by relevance
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | WifiConfigManagerTest.java | 237 when(mWifiNative.getNetworkVariable(networkId, WifiConfiguration.ssidVarName)) in addNetwork() 462 when(mWifiNative.getNetworkVariable(network, WifiConfiguration.ssidVarName)) in verifySaveNetwork() 464 when(mWifiNative.getNetworkVariable(network, WifiConfiguration.pmfVarName)) in verifySaveNetwork() 483 verify(mWifiNative).getNetworkVariable(network, WifiConfiguration.pmfVarName); in verifySaveNetwork() 491 verify(mWifiNative, never()).getNetworkVariable(intThat(not(network)), anyString()); in verifySaveNetwork() 575 when(mWifiNative.getNetworkVariable(i, WifiConfiguration.ssidVarName)) in testLoadConfiguredNetworks() 584 when(mWifiNative.getNetworkVariable(1, WifiConfigStore.ID_STRING_VAR_NAME)) in testLoadConfiguredNetworks() 661 when(mWifiNative.getNetworkVariable(anyInt(), eq(WifiConfiguration.ssidVarName))) in testLoadConfiguredNetworksEliminatesDuplicates() 803 when(mWifiNative.getNetworkVariable(anyInt(), anyString())).then( in testSaveLoadSingleEapNetwork() 1260 when(mWifiNative.getNetworkVariable(BASE_HAS_EVER_CONNECTED_CONFIG.networkId, in testUpdateAllowedKeyManagementChanged() [all …]
|
D | WifiNativeTest.java | 143 when(mWifiNative.getNetworkVariable(NETWORK_ID, NETWORK_EXTRAS_VARIABLE)) in testGetNetworkExtra()
|
D | WifiStateMachineTest.java | 515 when(mWifiNative.getNetworkVariable(anyInt(), anyString())) in addNetworkAndVerifySuccess()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | WifiConfigStore.java | 227 String value = mWifiNative.getNetworkVariable(netId, varName); in readNetworkBitsetVariable() 262 value = mWifiNative.getNetworkVariable(netId, WifiConfiguration.ssidVarName); in readNetworkVariables() 275 value = mWifiNative.getNetworkVariable(netId, WifiConfiguration.bssidVarName); in readNetworkVariables() 282 value = mWifiNative.getNetworkVariable(netId, WifiConfiguration.priorityVarName); in readNetworkVariables() 291 value = mWifiNative.getNetworkVariable(netId, WifiConfiguration.hiddenSSIDVarName); in readNetworkVariables() 300 value = mWifiNative.getNetworkVariable(netId, WifiConfiguration.pmfVarName); in readNetworkVariables() 309 value = mWifiNative.getNetworkVariable(netId, WifiConfiguration.wepTxKeyIdxVarName); in readNetworkVariables() 319 value = mWifiNative.getNetworkVariable(netId, in readNetworkVariables() 328 value = mWifiNative.getNetworkVariable(netId, WifiConfiguration.pskVarName); in readNetworkVariables() 404 final String fqdn = Utils.unquote(mWifiNative.getNetworkVariable( in loadNetworks() [all …]
|
D | WifiNative.java | 434 final String wrapped = getNetworkVariable(netId, name); in getNetworkExtra() 466 public String getNetworkVariable(int netId, String name) { in getNetworkVariable() method in WifiNative
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/ |
D | WifiP2pServiceImpl.java | 2532 String mode = mWifiNative.getNetworkVariable(netId, "mode"); in updatePersistentNetworks() 2689 String p2pClients = mWifiNative.getNetworkVariable(netId, "p2p_client_list"); in getClientList()
|