Home
last modified time | relevance | path

Searched refs:RemoveInterface (Results 1 – 12 of 12) sorted by relevance

/system/connectivity/shill/supplicant/
Dsupplicant_process_proxy_interface.h35 virtual bool RemoveInterface(const std::string& rpc_identifier) = 0;
Dmock_supplicant_process_proxy.h39 MOCK_METHOD1(RemoveInterface, bool(const std::string& rpc_identifier));
/system/connectivity/shill/net/
Dmock_rtnl_handler.h47 MOCK_METHOD1(RemoveInterface, bool(int interface_index));
Drtnl_handler.h101 virtual bool RemoveInterface(int interface_index);
Drtnl_handler.cc405 bool RTNLHandler::RemoveInterface(int interface_index) { in RemoveInterface() function in shill::RTNLHandler
/system/connectivity/shill/dbus/
Dchromeos_supplicant_process_proxy.cc138 bool ChromeosSupplicantProcessProxy::RemoveInterface( in RemoveInterface() function in shill::ChromeosSupplicantProcessProxy
148 if (!supplicant_proxy_->RemoveInterface(dbus::ObjectPath(rpc_identifier), in RemoveInterface()
Dchromeos_supplicant_process_proxy.h47 bool RemoveInterface(const std::string& rpc_identifier) override;
/system/connectivity/shill/ethernet/
Dethernet.cc362 if (!supplicant_process_proxy_->RemoveInterface( in StopSupplicant()
Dethernet_unittest.cc538 EXPECT_CALL(*process_proxy, RemoveInterface(StrEq(kInterfacePath))) in TEST_F()
/system/connectivity/shill/
Ddevice_info_unittest.cc604 EXPECT_CALL(rtnl_handler_, RemoveInterface(_)).Times(0); in TEST_F()
623 EXPECT_CALL(rtnl_handler_, RemoveInterface(kTestDeviceIndex)).Times(1); in TEST_F()
641 EXPECT_CALL(rtnl_handler_, RemoveInterface(_)).Times(0); in TEST_F()
Ddevice_info.cc1013 return rtnl_handler_->RemoveInterface(interface_index); in DeleteInterface()
/system/connectivity/shill/wifi/
Dwifi.cc286 supplicant_process_proxy_->RemoveInterface(supplicant_interface_path_); in Stop()