HomeSort by relevance Sort by last modified time
    Searched refs:policy_key (Results 1 - 17 of 17) sorted by null

  /external/chromium/chrome/browser/policy/
configuration_policy_provider_delegate_win.cc 92 RegKey policy_key(HKEY_LOCAL_MACHINE, kRegistrySubKey, KEY_READ);
94 if (ReadRegistryStringValue(&policy_key, name, result))
98 if (policy_key.Open(HKEY_CURRENT_USER, kRegistrySubKey,
101 return ReadRegistryStringValue(&policy_key, name, result);
108 RegKey policy_key; local
109 if (policy_key.Open(HKEY_LOCAL_MACHINE, path.c_str(), KEY_READ) !=
112 if (policy_key.Open(HKEY_CURRENT_USER, path.c_str(), KEY_READ) !=
118 while (ReadRegistryStringValue(&policy_key, base::IntToString16(++index),
137 RegKey policy_key(HKEY_LOCAL_MACHINE, kRegistrySubKey, KEY_READ);
138 if (policy_key.ReadValueDW(value_name.c_str(), &value) == ERROR_SUCCESS)
    [all...]
config_dir_policy_provider_unittest.cc 109 const char* policy_key,
112 policy_key_(policy_key),
134 const char* policy_key() const { return policy_key_; } function in class:policy::ValueTestParams
140 const char* policy_key) {
141 return ValueTestParams(type, policy_key, Value::CreateStringValue("test"));
145 const char* policy_key) {
146 return ValueTestParams(type, policy_key, Value::CreateBooleanValue(true));
150 const char* policy_key) {
151 return ValueTestParams(type, policy_key, Value::CreateIntegerValue(42));
155 const char* policy_key) {
    [all...]
  /external/chromium_org/chrome_frame/test/
policy_settings_unittest.cc 39 bool InitializePolicyKey(HKEY policy_root, RegKey* policy_key) {
40 EXPECT_EQ(ERROR_SUCCESS, policy_key->Create(policy_root,
42 return policy_key->Valid();
45 void WritePolicyList(RegKey* policy_key,
48 DCHECK(policy_key);
50 policy_key->DeleteKey(list_name);
53 EXPECT_EQ(ERROR_SUCCESS, list_key.Create(policy_key->Handle(), list_name,
65 RegKey policy_key; local
66 if (!InitializePolicyKey(policy_root, &policy_key))
69 policy_key.WriteValue
86 RegKey policy_key; local
99 RegKey policy_key; local
112 RegKey policy_key; local
    [all...]
  /external/chromium_org/remoting/host/policy_hack/
policy_watcher_win.cc 121 RegKey policy_key(HKEY_LOCAL_MACHINE, kRegistrySubKey, KEY_READ);
122 if (policy_key.ReadValue(value_name_wide.c_str(), &value) ==
128 if (policy_key.Open(HKEY_CURRENT_USER, kRegistrySubKey, KEY_READ) ==
130 if (policy_key.ReadValue(value_name_wide.c_str(), &value) ==
144 RegKey policy_key(HKEY_LOCAL_MACHINE, kRegistrySubKey, KEY_READ);
145 if (policy_key.ReadValueDW(value_name_wide.c_str(), &value) ==
151 if (policy_key.Open(HKEY_CURRENT_USER, kRegistrySubKey, KEY_READ) ==
153 if (policy_key.ReadValueDW(value_name_wide.c_str(), &value) ==
  /external/chromium_org/chrome/browser/chromeos/policy/
network_configuration_updater_impl.cc 130 std::string policy_key; local
133 policy_key = key::kOpenNetworkConfiguration;
136 policy_key = key::kDeviceOpenNetworkConfiguration;
142 const base::Value* policy_value = policies.GetValue(policy_key);
147 LOG(ERROR) << "ONC policy " << policy_key << " is not a string value.";
network_configuration_updater_impl_cros.h 81 // Push the policy stored at |policy_key| for |onc_source| to
83 void ApplyNetworkConfiguration(const std::string& policy_key,
network_configuration_updater_impl_cros.cc 143 const std::string& policy_key,
150 const base::Value* policy_value = policies.GetValue(policy_key);
  /external/chromium_org/chrome/browser/policy/test/
policy_testserver.py 168 policy_key = self.GetUniqueParam('key')
169 if not policy_key:
171 data = self.server.ReadPolicyDataFromDataDir(policy_key)
173 return (404, 'Policy not found for ' + policy_key)
217 def CreatePolicyForExternalPolicyData(self, policy_key):
218 """Returns an ExternalPolicyData protobuf for policy_key.
220 If there is policy data for policy_key then the download url will be
225 policy_key: the policy type and settings entity id, joined by '/'.
231 data = self.server.ReadPolicyDataFromDataDir(policy_key)
236 policy_key) )
    [all...]
  /external/chromium_org/chrome/browser/policy/
policy_path_parser_win.cc 27 base::win::RegKey policy_key(hive,
30 if (policy_key.ReadValue(key_name.c_str(), &value) == ERROR_SUCCESS) {
  /external/chromium_org/chromeos/dbus/
session_manager_client.h 156 // The |policy_key| argument is not sent to the session manager, but is used
160 const std::string& policy_key,
fake_session_manager_client.h 56 const std::string& policy_key,
fake_session_manager_client.cc 120 const std::string& policy_key,
session_manager_client.cc 601 const std::string& policy_key,
603 if (policy_key.empty()) {
613 // directory. The |policy_key| argument to this method can then be removed.
628 key_path, policy_key),
  /external/chromium_org/chrome/browser/chromeos/settings/
device_settings_test_helper.h 111 const std::string& policy_key,
device_settings_test_helper.cc 165 const std::string& policy_key,
  /external/chromium_org/chrome/installer/util/
google_update_settings.cc 488 RegKey policy_key; local
491 if (policy_key.Open(HKEY_LOCAL_MACHINE, kGoogleUpdatePoliciesKey,
502 found_override = (policy_key.ReadValueDW(app_update_override.c_str(),
508 policy_key.ReadValueDW(kGoogleUpdateUpdatePolicyValue,
  /external/chromium/net/tools/testserver/
device_management.py 284 setting.policy_key = 'chrome-policy'

Completed in 158 milliseconds