Home
last modified time | relevance | path

Searched refs:profile_name (Results 1 – 11 of 11) sorted by relevance

/system/connectivity/shill/test-scripts/
Dget-profile-entry24 (_, profile_name, entry_name) = sys.argv
28 profile = flim.FindElementByNameSubstring('Profile', profile_name)
32 profile_name)
/system/connectivity/shill/bin/
Dshill_login_user44 profile_name="~${profile_user}/shill"
161 org.chromium.flimflam.Manager.CreateProfile string:$profile_name ||
162 logger -t "$script_name" "Failed to create $profile_name profile"
169 string:$profile_name string:$username_hash ||
170 logger -t "$script_name" "Failed to push $profile_name profile"
Dset_cellular_ppp122 local profile_name
125 profile_name="$(get_property ${IPROFILE} ${profile} Name)"
126 if [ ${profile_name} = ${DEFAULT_PROFILE_NAME} ]; then
/system/connectivity/shill/test-rpc-proxy/
Dproxy_shill_wifi_client.h91 virtual bool CreateProfile(const std::string& profile_name) = 0;
92 virtual bool PushProfile(const std::string& profile_name) = 0;
93 virtual bool PopProfile(const std::string& profile_name) = 0;
94 virtual bool RemoveProfile(const std::string& profile_name) = 0;
Dproxy_dbus_shill_wifi_client.h72 bool CreateProfile(const std::string& profile_name) override;
73 bool PushProfile(const std::string& profile_name) override;
74 bool PopProfile(const std::string& profile_name) override;
75 bool RemoveProfile(const std::string& profile_name) override;
Dproxy_dbus_shill_wifi_client.cc356 bool ProxyDbusShillWifiClient::CreateProfile(const std::string& profile_name) { in CreateProfile() argument
357 return dbus_client_->CreateProfile(profile_name); in CreateProfile()
360 bool ProxyDbusShillWifiClient::PushProfile(const std::string& profile_name) { in PushProfile() argument
361 return dbus_client_->PushProfile(profile_name); in PushProfile()
364 bool ProxyDbusShillWifiClient::PopProfile(const std::string& profile_name) { in PopProfile() argument
365 if (profile_name.empty()) { in PopProfile()
368 return dbus_client_->PopProfile(profile_name); in PopProfile()
372 bool ProxyDbusShillWifiClient::RemoveProfile(const std::string& profile_name) { in RemoveProfile() argument
373 return dbus_client_->RemoveProfile(profile_name); in RemoveProfile()
379 brillo::Any profile_name; in CleanProfiles() local
[all …]
Dproxy_dbus_client.h117 bool CreateProfile(const std::string& profile_name);
118 bool RemoveProfile(const std::string& profile_name);
119 bool PushProfile(const std::string& profile_name);
120 bool PopProfile(const std::string& profile_name);
Dproxy_rpc_server.cc47 const std::string& profile_name(params_in[0]); in CreateProfile() local
48 return shill_wifi_client->CreateProfile(profile_name); in CreateProfile()
57 const std::string& profile_name(params_in[0]); in RemoveProfile() local
58 return shill_wifi_client->RemoveProfile(profile_name); in RemoveProfile()
67 const std::string& profile_name(params_in[0]); in PushProfile() local
68 return shill_wifi_client->PushProfile(profile_name); in PushProfile()
77 const std::string& profile_name(params_in[0]); in PopProfile() local
78 return shill_wifi_client->PopProfile(profile_name); in PopProfile()
Dproxy_dbus_client.cc364 bool ProxyDbusClient::CreateProfile(const std::string& profile_name) { in CreateProfile() argument
368 profile_name, &profile_path, &error); in CreateProfile()
371 bool ProxyDbusClient::RemoveProfile(const std::string& profile_name) { in RemoveProfile() argument
373 return shill_manager_proxy_.RemoveProfile(profile_name, &error); in RemoveProfile()
376 bool ProxyDbusClient::PushProfile(const std::string& profile_name) { in PushProfile() argument
380 profile_name, &profile_path, &error); in PushProfile()
383 bool ProxyDbusClient::PopProfile(const std::string& profile_name) { in PopProfile() argument
385 return shill_manager_proxy_.PopProfile(profile_name, &error); in PopProfile()
/system/connectivity/shill/
Dprofile.cc427 const Identifier& profile_name) { in GetFinalStoragePath() argument
429 if (profile_name.user.empty()) { // True for DefaultProfiles. in GetFinalStoragePath()
431 base::StringPrintf("%s.profile", profile_name.identifier.c_str())); in GetFinalStoragePath()
435 profile_name.user.c_str(), in GetFinalStoragePath()
436 profile_name.identifier.c_str())); in GetFinalStoragePath()
Dprofile.h219 const Identifier& profile_name);