HomeSort by relevance Sort by last modified time
    Searched refs:removeNetwork (Results 1 - 25 of 42) sorted by null

1 2

  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
networkconfig.h 38 virtual void removeNetwork();
wpagui.h 58 virtual void removeNetwork(const QString &sel);
wpagui.cpp 1186 void WpaGui::removeNetwork(const QString &sel)
1214 removeNetwork(sel);
1227 removeNetwork(sel);
1248 removeNetwork(sel);
    [all...]
networkconfig.cpp 42 connect(removeButton, SIGNAL(clicked()), this, SLOT(removeNetwork()));
790 void NetworkConfig::removeNetwork()
  /cts/tests/tests/permission/src/android/permission/cts/
NoWifiStatePermissionTest.java 184 * Verify that WifiManager#removeNetwork() requires permissions.
190 mWifiManager.removeNetwork(TEST_NET_ID);
191 fail("WifiManager.removeNetwork didn't throw SecurityException as expected");
  /cts/hostsidetests/devicepolicy/app/WifiConfigCreator/src/com/android/cts/deviceowner/wificonfigcreator/
WifiConfigCreatorActivity.java 62 configCreator.removeNetwork(netId);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
WifiConfigCreator.java 130 public boolean removeNetwork(int netId) {
131 return mWifiManager.removeNetwork(netId);
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
WifiConfigLockdownTest.java 75 mWifiManager.removeNetwork(config.networkId);
106 assertTrue(mWifiManager.removeNetwork(config.networkId));
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
WifiClientTest.java 135 boolean ret = mWifiManager.removeNetwork(netId);
230 boolean ret = mWifiManager.removeNetwork(netId);
  /frameworks/base/wifi/java/android/net/wifi/
IWifiManager.aidl 72 boolean removeNetwork(int netId);
WifiManager.java 898 public boolean removeNetwork(int netId) {
900 return mService.removeNetwork(netId);
    [all...]
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiManagerTest.java 361 mWifiManager.removeNetwork(wifiConfiguration.networkId);
396 assertTrue(mWifiManager.removeNetwork(netId));
397 assertFalse(mWifiManager.removeNetwork(notExist));
WifiEnterpriseConfigTest.java     [all...]
  /frameworks/base/core/java/android/os/
INetworkManagementService.aidl 406 void removeNetwork(int netId);
  /packages/apps/CertInstaller/src/com/android/certinstaller/
WiFiInstaller.java 140 mWifiManager.removeNetwork(config.networkId);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiConfigStore.java 452 mWifiNative.removeNetwork(duplicateConfig.networkId);
    [all...]
WifiConfigManager.java 145 * removeNetwork(). For these calls, the config is not persisted
    [all...]
WifiServiceImpl.java     [all...]
WifiNative.java 474 public boolean removeNetwork(int netId) {
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiStateMachineTest.java 671 when(mWifiNative.removeNetwork(0)).thenReturn(true);
689 verify(mWifiNative, never()).removeNetwork(anyInt());
771 when(mWifiNative.removeNetwork(0)).thenReturn(true);
793 verify(mWifiNative, never()).removeNetwork(anyInt());
    [all...]
WifiConfigManagerTest.java     [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiManagerFacade.java 769 return mWifi.removeNetwork(netId);
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
WifiP2pServiceImpl.java 565 mWifiNative.removeNetwork(netId);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NetworkManagementService.java     [all...]
ConnectivityService.java     [all...]

Completed in 1769 milliseconds

1 2