Searched refs:RemoveNetwork (Results 1 – 9 of 9) sorted by relevance
/system/connectivity/shill/supplicant/ |
D | supplicant_interface_proxy_interface.h | 46 virtual bool RemoveNetwork(const std::string& network) = 0;
|
D | mock_supplicant_interface_proxy.h | 49 MOCK_METHOD1(RemoveNetwork, bool(const std::string& network));
|
/system/connectivity/shill/ethernet/ |
D | ethernet_unittest.cc | 483 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()
|
D | ethernet.cc | 339 if (!supplicant_interface_proxy_->RemoveNetwork(supplicant_network_path_)) { in StartEapAuthentication()
|
/system/connectivity/shill/dbus/ |
D | chromeos_supplicant_interface_proxy.h | 60 bool RemoveNetwork(const std::string& network) override;
|
D | chromeos_supplicant_interface_proxy.cc | 279 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/ |
D | wifi_unittest.cc | 613 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 …]
|
D | wifi.cc | 280 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()
|
D | wifi.h | 481 bool RemoveNetwork(const std::string& network);
|