Searched defs:profile_name (Results 1 - 3 of 3) sorted by relevance

/system/connectivity/shill/
H A Dprofile.cc427 const Identifier& profile_name) {
429 if (profile_name.user.empty()) { // True for DefaultProfiles.
431 base::StringPrintf("%s.profile", profile_name.identifier.c_str()));
435 profile_name.user.c_str(),
436 profile_name.identifier.c_str()));
425 GetFinalStoragePath( const FilePath& storage_dir, const Identifier& profile_name) argument
/system/connectivity/shill/test-rpc-proxy/
H A Dproxy_dbus_client.cc364 bool ProxyDbusClient::CreateProfile(const std::string& profile_name) { argument
368 profile_name, &profile_path, &error);
371 bool ProxyDbusClient::RemoveProfile(const std::string& profile_name) { argument
373 return shill_manager_proxy_.RemoveProfile(profile_name, &error);
376 bool ProxyDbusClient::PushProfile(const std::string& profile_name) { argument
380 profile_name, &profile_path, &error);
383 bool ProxyDbusClient::PopProfile(const std::string& profile_name) { argument
385 return shill_manager_proxy_.PopProfile(profile_name, &error);
H A Dproxy_dbus_shill_wifi_client.cc356 bool ProxyDbusShillWifiClient::CreateProfile(const std::string& profile_name) { argument
357 return dbus_client_->CreateProfile(profile_name);
360 bool ProxyDbusShillWifiClient::PushProfile(const std::string& profile_name) { argument
361 return dbus_client_->PushProfile(profile_name);
364 bool ProxyDbusShillWifiClient::PopProfile(const std::string& profile_name) { argument
365 if (profile_name.empty()) {
368 return dbus_client_->PopProfile(profile_name);
372 bool ProxyDbusShillWifiClient::RemoveProfile(const std::string& profile_name) { argument
373 return dbus_client_->RemoveProfile(profile_name);
379 brillo::Any profile_name; local
[all...]

Completed in 85 milliseconds