Searched refs:removeNetwork (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
H A DWifiClientTest.java135 boolean ret = mWifiManager.removeNetwork(netId);
230 boolean ret = mWifiManager.removeNetwork(netId);
/frameworks/base/wifi/java/android/net/wifi/
H A DIWifiManager.aidl72 boolean removeNetwork(int netId);
H A DWifiManager.java900 public boolean removeNetwork(int netId) { method in class:WifiManager
902 return mService.removeNetwork(netId);
2068 * This function is used instead of a sequence of removeNetwork()
/frameworks/base/core/java/android/os/
H A DINetworkManagementService.aidl406 void removeNetwork(int netId);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiConfigStore.java452 mWifiNative.removeNetwork(duplicateConfig.networkId);
821 mWifiNative.removeNetwork(netId);
841 public boolean removeNetwork(WifiConfiguration config) { method in class:WifiConfigStore
845 if (VDBG) localLog("removeNetwork: " + config.networkId);
846 if (!mWifiNative.removeNetwork(config.networkId)) {
H A DWifiConfigManager.java145 * removeNetwork(). For these calls, the config is not persisted
884 if (!removeNetwork(netId)) {
1146 boolean removeNetwork(int netId) { method in class:WifiConfigManager
1147 if (mShowNetworks) localLogNetwork("removeNetwork", netId);
1168 if (!mWifiConfigStore.removeNetwork(config)) {
1186 logd("removeNetwork " + " key=" + key + " config.id=" + config.networkId);
1241 success &= removeNetwork(config.networkId);
1258 success &= removeNetwork(config.networkId);
1665 mWifiConfigStore.removeNetwork(config);
2076 mWifiConfigStore.removeNetwork(confi
[all...]
H A DWifiServiceImpl.java897 * See {@link android.net.wifi.WifiManager#removeNetwork(int)}
902 public boolean removeNetwork(int netId) { method in class:WifiServiceImpl
1743 removeNetwork(config.networkId);
H A DWifiNative.java475 public boolean removeNetwork(int netId) { method in class:WifiNative
H A DWifiStateMachine.java5577 ok = mWifiConfigManager.removeNetwork(message.arg1);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiStateMachineTest.java681 when(mWifiNative.removeNetwork(0)).thenReturn(true);
699 verify(mWifiNative, never()).removeNetwork(anyInt());
781 when(mWifiNative.removeNetwork(0)).thenReturn(true);
803 verify(mWifiNative, never()).removeNetwork(anyInt());
H A DWifiConfigManagerTest.java723 when(mWifiNative.removeNetwork(anyInt())).thenReturn(true);
731 verify(mWifiNative).removeNetwork(removedEphemeralConfig.networkId);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pServiceImpl.java565 mWifiNative.removeNetwork(netId);
2532 mWifiNative.removeNetwork(netId);
/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java2606 public void removeNetwork(int netId) { method in class:NetworkManagementService
H A DConnectivityService.java2439 mNetd.removeNetwork(nai.network.netId);

Completed in 338 milliseconds