Home
last modified time | relevance | path

Searched refs:CreateProfile (Results 1 – 15 of 15) sorted by relevance

/system/connectivity/shill/test-rpc-proxy/
Dproxy_rpc_server.cc41 XmlRpc::XmlRpcValue CreateProfile( in CreateProfile() function
48 return shill_wifi_client->CreateProfile(profile_name); in CreateProfile()
198 bool is_success = shill_wifi_client->CreateProfile(kTestProfileName); in InitTestNetworkState()
522 RegisterRpcMethod("create_profile", base::Bind(&CreateProfile)); in Run()
Dproxy_shill_wifi_client.h91 virtual bool CreateProfile(const std::string& profile_name) = 0;
Dproxy_dbus_shill_wifi_client.h72 bool CreateProfile(const std::string& profile_name) override;
Dproxy_dbus_client.h117 bool CreateProfile(const std::string& profile_name);
Dproxy_dbus_client.cc364 bool ProxyDbusClient::CreateProfile(const std::string& profile_name) { in CreateProfile() function in ProxyDbusClient
367 return shill_manager_proxy_.CreateProfile( in CreateProfile()
Dproxy_dbus_shill_wifi_client.cc356 bool ProxyDbusShillWifiClient::CreateProfile(const std::string& profile_name) { in CreateProfile() function in ProxyDbusShillWifiClient
357 return dbus_client_->CreateProfile(profile_name); in CreateProfile()
/system/connectivity/shill/bin/
Dshill_login_user161 org.chromium.flimflam.Manager.CreateProfile string:$profile_name ||
/system/connectivity/shill/test-scripts/
Dflimflam.py352 def CreateProfile(self, ident): member in FlimFlam
353 path = self.manager.CreateProfile(ident)
/system/connectivity/shill/dbus/
Dchromeos_manager_dbus_adaptor.cc143 bool ChromeosManagerDBusAdaptor::CreateProfile(brillo::ErrorPtr* error, in CreateProfile() function in shill::ChromeosManagerDBusAdaptor
149 manager_->CreateProfile(name, &path, &e); in CreateProfile()
Dchromeos_manager_dbus_adaptor.h78 bool CreateProfile(brillo::ErrorPtr* error,
/system/connectivity/shill/doc/
Dmanager-api.txt29 object CreateProfile(string name)
46 profile is already registered with a CreateProfile
56 previously been created with CreateProfile.
70 previously been created with CreateProfile.
/system/update_engine/include/shill/
Ddbus-proxy-mocks.h55 MOCK_METHOD4(CreateProfile,
/system/connectivity/shill/
Dmanager.h220 void CreateProfile(const std::string& name, std::string* path, Error* error);
Dmanager_unittest.cc252 manager->CreateProfile(name, &path, &error); in TestCreateProfile()
942 TEST_F(ManagerTest, CreateProfile) { in TEST_F() argument
970 manager.CreateProfile(kProfile, &path, &error); in TEST_F()
4458 manager.CreateProfile(kProfile0, &profile_rpc_path, &error); in TEST_F()
4460 manager.CreateProfile(kProfile1, &profile_rpc_path, &error); in TEST_F()
Dmanager.cc374 void Manager::CreateProfile(const string& name, string* path, Error* error) { in CreateProfile() function in shill::Manager