/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.cc | 59 std::string policy_key, 66 policy_key_(policy_key),
|
network_configuration_updater.h | 61 std::string policy_key,
|
/external/chromium_org/chrome/browser/policy/test/ |
policy_testserver.py | 171 policy_key = self.GetUniqueParam('key') 172 if not policy_key: 174 data = self.server.ReadPolicyDataFromDataDir(policy_key) 176 return (404, 'Policy not found for ' + policy_key) 220 def CreatePolicyForExternalPolicyData(self, policy_key): 221 """Returns an ExternalPolicyData protobuf for policy_key. 223 If there is policy data for policy_key then the download url will be 228 policy_key: the policy type and settings entity id, joined by '/'. 234 data = self.server.ReadPolicyDataFromDataDir(policy_key) 237 self.server.GetBaseURL(), 'externalpolicydata?key=%s' % 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 | 145 // The |policy_key| argument is not sent to the session manager, but is used 149 const std::string& policy_key,
|
fake_session_manager_client.h | 55 const std::string& policy_key,
|
fake_session_manager_client.cc | 119 const std::string& policy_key,
|
session_manager_client.cc | 586 const std::string& policy_key, 588 if (policy_key.empty()) { 598 // directory. The |policy_key| argument to this method can then be removed. 613 key_path, policy_key),
|
/external/chromium_org/chrome/browser/chromeos/settings/ |
device_settings_test_helper.h | 110 const std::string& policy_key,
|
device_settings_test_helper.cc | 164 const std::string& policy_key,
|
/external/chromium_org/chrome/installer/util/ |
google_update_settings.cc | 543 RegKey policy_key; local 546 if (policy_key.Open(HKEY_LOCAL_MACHINE, kGoogleUpdatePoliciesKey, 557 found_override = (policy_key.ReadValueDW(app_update_override.c_str(), 563 policy_key.ReadValueDW(kGoogleUpdateUpdatePolicyValue,
|
/external/chromium/net/tools/testserver/ |
device_management.py | 284 setting.policy_key = 'chrome-policy'
|