Home
last modified time | relevance | path

Searched refs:RemoveNetwork (Results 1 – 9 of 9) sorted by relevance

/system/connectivity/shill/supplicant/
Dsupplicant_interface_proxy_interface.h46 virtual bool RemoveNetwork(const std::string& network) = 0;
Dmock_supplicant_interface_proxy.h49 MOCK_METHOD1(RemoveNetwork, bool(const std::string& network));
/system/connectivity/shill/ethernet/
Dethernet_unittest.cc483 EXPECT_CALL(*interface_proxy, RemoveNetwork(_)).Times(0); in TEST_F()
495 EXPECT_CALL(*interface_proxy, RemoveNetwork(_)).Times(0); in TEST_F()
514 EXPECT_CALL(*interface_proxy, RemoveNetwork(StrEq(kFirstNetworkPath))) in TEST_F()
Dethernet.cc339 if (!supplicant_interface_proxy_->RemoveNetwork(supplicant_network_path_)) { in StartEapAuthentication()
/system/connectivity/shill/dbus/
Dchromeos_supplicant_interface_proxy.h60 bool RemoveNetwork(const std::string& network) override;
Dchromeos_supplicant_interface_proxy.cc279 bool ChromeosSupplicantInterfaceProxy::RemoveNetwork(const string& network) { in RemoveNetwork() function in shill::ChromeosSupplicantInterfaceProxy
282 if (!interface_proxy_->RemoveNetwork(dbus::ObjectPath(network), in RemoveNetwork()
/system/connectivity/shill/wifi/
Dwifi_unittest.cc613 ON_CALL(*supplicant_interface_proxy_.get(), RemoveNetwork(_)) in WiFiObjectTest()
1029 bool RemoveNetwork(const string& network) { in RemoveNetwork() function in shill::WiFiObjectTest
1030 return wifi_->RemoveNetwork(network); in RemoveNetwork()
1674 EXPECT_CALL(*GetSupplicantInterfaceProxy(), RemoveNetwork(network)); in TEST_F()
1685 TEST_F(WiFiMainTest, RemoveNetwork) { in TEST_F() argument
1688 EXPECT_CALL(*GetSupplicantInterfaceProxy(), RemoveNetwork(network)) in TEST_F()
1690 EXPECT_TRUE(RemoveNetwork(network)); in TEST_F()
1723 EXPECT_CALL(*GetSupplicantInterfaceProxy(), RemoveNetwork(network)) in TEST_F()
1726 EXPECT_FALSE(RemoveNetwork(network)); in TEST_F()
2168 EXPECT_CALL(*GetSupplicantInterfaceProxy(), RemoveNetwork(kPath)).Times(0); in TEST_F()
[all …]
Dwifi.cc280 RemoveNetwork(map_entry.second); in Stop()
639 bool WiFi::RemoveNetwork(const string& network) { in RemoveNetwork() function in shill::WiFi
640 return supplicant_interface_proxy_->RemoveNetwork(network); in RemoveNetwork()
1137 RemoveNetwork(rpcid); in DisableNetworkForService()
1159 if (!RemoveNetwork(rpcid)) { in RemoveNetworkForService()
2914 RemoveNetwork(map_entry.second); in RemoveSupplicantNetworks()
Dwifi.h481 bool RemoveNetwork(const std::string& network);