/external/autotest/server/site_tests/network_WiFi_ProfileBasic/ |
network_WiFi_ProfileBasic.py | 16 def profile_name(self): member in class:ProfileRemovingContext 21 def __init__(self, wifi_client, profile_name='always_removed'): 23 self._profile_name = profile_name 27 if not all([self._wifi_client.shill.create_profile(self.profile_name), 28 self._wifi_client.shill.push_profile(self.profile_name)]): 30 self.profile_name) 36 self._wifi_client.shill.pop_profile(self.profile_name) 37 if not self._wifi_client.shill.remove_profile(self.profile_name): 39 self.profile_name) 79 profile_name='bottom') as bottom [all...] |
/system/connectivity/shill/test-scripts/ |
get-profile-entry | 21 print "Usage: %s <profile_name> <entry_name>" % (sys.argv[0]) 24 (_, profile_name, entry_name) = sys.argv 28 profile = flim.FindElementByNameSubstring('Profile', profile_name) 32 profile_name)
|
/external/autotest/client/site_tests/network_BasicProfileProperties/ |
network_BasicProfileProperties.py | 18 PROFILE_NAME = 'test' 46 shill.manager, profile_name=self.PROFILE_NAME): 54 profile_name = self.get_field_from_properties( 56 if profile_name != self.PROFILE_NAME: 58 '%r.' % profile_name)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ |
provider.py | 181 security_token=None, profile_name=None): 188 self.profile_name = profile_name 200 self.get_credentials(access_key, secret_key, security_token, profile_name) 265 security_token=None, profile_name=None): 271 if profile_name is None and profile_name_name is not None and \ 273 profile_name = os.environ[profile_name_name.upper()] 283 elif profile_name is not None: 284 if shared.has_option(profile_name, access_key_name): 285 self.access_key = shared.get(profile_name, access_key_name [all...] |
/external/autotest/client/cros/ |
shill_temporary_profile.py | 10 def __init__(self, manager, profile_name='test'): 12 self._profile_name = profile_name
|
/frameworks/base/packages/Osu/res/layout/ |
list_item.xml | 21 android:id="@+id/profile_name"
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ecs/ |
__init__.py | 46 security_token=None, profile_name=None): 51 profile_name=profile_name)
|
/external/autotest/client/cros/networking/ |
shill_xmlrpc_server.py | 56 def create_profile(self, profile_name): 59 @param profile_name string name of profile to create. 63 self._wifi_proxy.manager.CreateProfile(profile_name) 68 def push_profile(self, profile_name): 71 @param profile_name string name of profile to push. 75 self._wifi_proxy.manager.PushProfile(profile_name) 80 def pop_profile(self, profile_name): 83 @param profile_name string name of profile to pop. 87 if profile_name is None: 90 self._wifi_proxy.manager.PopProfile(profile_name) [all...] |
/developers/build/prebuilts/gradle/AppRestrictionEnforcer/Application/src/main/java/com/example/android/apprestrictionenforcer/ |
EnableProfileActivity.java | 40 manager.setProfileName(componentName, getString(R.string.profile_name));
|
/developers/build/prebuilts/gradle/DeviceOwner/Application/src/main/res/values/ |
strings.xml | 24 <string name="profile_name">Sample Device Owner</string>
|
/developers/samples/android/admin/AppRestrictionEnforcer/Application/src/main/java/com/example/android/apprestrictionenforcer/ |
EnableProfileActivity.java | 40 manager.setProfileName(componentName, getString(R.string.profile_name));
|
/developers/samples/android/admin/DeviceOwner/Application/src/main/res/values/ |
strings.xml | 24 <string name="profile_name">Sample Device Owner</string>
|
/development/samples/browseable/AppRestrictionEnforcer/src/com.example.android.apprestrictionenforcer/ |
EnableProfileActivity.java | 40 manager.setProfileName(componentName, getString(R.string.profile_name));
|
/development/samples/browseable/DeviceOwner/res/values/ |
strings.xml | 24 <string name="profile_name">Sample Device Owner</string>
|
/system/connectivity/shill/test-rpc-proxy/ |
proxy_dbus_client.h | 117 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);
|
proxy_dbus_shill_wifi_client.h | 72 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;
|
proxy_shill_wifi_client.h | 91 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;
|
proxy_dbus_client.cc | 364 bool ProxyDbusClient::CreateProfile(const std::string& profile_name) { 368 profile_name, &profile_path, &error); 371 bool ProxyDbusClient::RemoveProfile(const std::string& profile_name) { 373 return shill_manager_proxy_.RemoveProfile(profile_name, &error); 376 bool ProxyDbusClient::PushProfile(const std::string& profile_name) { 380 profile_name, &profile_path, &error); 383 bool ProxyDbusClient::PopProfile(const std::string& profile_name) { 385 return shill_manager_proxy_.PopProfile(profile_name, &error);
|
proxy_rpc_server.cc | 47 const std::string& profile_name(params_in[0]); 48 return shill_wifi_client->CreateProfile(profile_name); 57 const std::string& profile_name(params_in[0]); 58 return shill_wifi_client->RemoveProfile(profile_name); 67 const std::string& profile_name(params_in[0]); 68 return shill_wifi_client->PushProfile(profile_name); 77 const std::string& profile_name(params_in[0]); 78 return shill_wifi_client->PopProfile(profile_name);
|
/system/connectivity/shill/bin/ |
shill_login_user | 44 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"
|
/developers/build/prebuilts/gradle/AppRestrictionEnforcer/Application/src/main/res/values/ |
strings.xml | 27 <string name="profile_name">AppRestrictionEnforcer </string>
|
/developers/build/prebuilts/gradle/BasicManagedProfile/Application/src/main/java/com/example/android/basicmanagedprofile/ |
EnableProfileActivity.java | 51 manager.setProfileName(componentName, getString(R.string.profile_name));
|
/developers/build/prebuilts/gradle/BasicManagedProfile/Application/src/main/res/values/ |
strings.xml | 33 <string name="profile_name">Sample Managed Profile</string>
|
/developers/build/prebuilts/gradle/DeviceOwner/Application/src/main/java/com/example/android/deviceowner/ |
DeviceOwnerReceiver.java | 41 manager.setProfileName(componentName, context.getString(R.string.profile_name));
|
/developers/samples/android/admin/AppRestrictionEnforcer/Application/src/main/res/values/ |
strings.xml | 27 <string name="profile_name">AppRestrictionEnforcer </string>
|