/external/chromium_org/components/policy/core/browser/ |
policy_error_map.cc | 20 const std::string& subkey, 25 subkey(subkey), 32 const std::string& subkey, 36 subkey(subkey), 42 std::string subkey; member in struct:policy::PolicyErrorMap::PendingError 64 const std::string& subkey, 66 AddError(PendingError(policy, subkey, -1, message_id)); 82 const std::string& subkey, [all...] |
policy_error_map.h | 36 // Adds an entry with key |policy|, subkey |subkey|, and the error message 39 const std::string& subkey, 55 // Adds an entry with key |policy|, subkey |subkey| and the error message 59 const std::string& subkey,
|
/external/chromium_org/components/policy/core/common/cloud/ |
resource_cache.h | 25 // a subkey, and can be queried by (key, subkey) or (key) lookups. 36 // Stores |data| under (key, subkey). Returns true if the store suceeded, and 39 const std::string& subkey, 42 // Loads the contents of (key, subkey) into |data| and returns true. Returns 43 // false if (key, subkey) isn't found or if there is a problem reading the 46 const std::string& subkey, 53 // Deletes (key, subkey). 54 void Delete(const std::string& key, const std::string& subkey); 78 // Points |path| at the file in which data for (key, subkey) should be store [all...] |
resource_cache.cc | 72 const std::string& subkey, 86 return VerifyKeyPathAndGetSubkeyPath(key, true, subkey, &subkey_path) && 92 const std::string& subkey, 97 if (!VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path) || 118 std::string subkey; local 123 Base64Decode(encoded_subkey, &subkey) && 125 (*contents)[subkey].swap(data); 130 void ResourceCache::Delete(const std::string& key, const std::string& subkey) { 133 if (VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path)) 136 // call below deletes the directory representing |key| if its last subkey wa 159 std::string subkey; local [all...] |
/external/openssh/ |
acss.h | 36 unsigned char subkey[ACSS_KEYSIZE]; member in struct:acss_key_st
|
/external/chromium_org/sandbox/win/tests/validation_tests/ |
commands.h | 30 int TestOpenKey(HKEY base_key, base::string16 subkey);
|
commands.cc | 177 // Get the subkey. 178 base::string16 subkey; local 180 subkey = argv[1]; 181 trim_quote(&subkey); 184 return TestOpenKey(base_key, subkey); 187 int TestOpenKey(HKEY base_key, base::string16 subkey) { 190 subkey.c_str(),
|
/external/chromium/base/win/ |
registry.cc | 24 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access) 30 Create(rootkey, subkey, access); 32 Open(rootkey, subkey, access); 34 DCHECK(!subkey); 42 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) { 44 return CreateWithDisposition(rootkey, subkey, &disposition_value, access); 47 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey, 50 DCHECK(rootkey && subkey && access && disposition); 53 LONG result = RegCreateKeyEx(rootkey, subkey, 0, NULL, 59 LONG RegKey::Open(HKEY rootkey, const wchar_t* subkey, REGSAM access) 72 HKEY subkey = NULL; local 85 HKEY subkey = NULL; local [all...] |
registry.h | 28 RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access); 31 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access); 33 LONG CreateWithDisposition(HKEY rootkey, const wchar_t* subkey, 36 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access); 38 // Creates a subkey or open it if it already exists. 41 // Opens a subkey
|
/external/chromium_org/base/win/ |
registry.cc | 47 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access) 52 Create(rootkey, subkey, access); 54 Open(rootkey, subkey, access); 56 DCHECK(!subkey); 64 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) { 66 return CreateWithDisposition(rootkey, subkey, &disposition_value, access); 69 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey, 71 DCHECK(rootkey && subkey && access && disposition); 74 LONG result = RegCreateKeyEx(rootkey, subkey, 0, NULL, 82 HKEY subkey = NULL local 101 HKEY subkey = NULL; local [all...] |
registry.h | 30 RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access); 33 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access); 35 LONG CreateWithDisposition(HKEY rootkey, const wchar_t* subkey, 38 // Creates a subkey or open it if it already exists. 42 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
|
/external/chromium_org/chrome/installer/launcher_support/ |
chrome_launcher_support.cc | 56 string16 subkey(kGoogleRegClientStateKey); 57 subkey.append(1, L'\\').append(app_guid); 60 if (reg_key.Open(root_key, subkey.c_str(), 74 string16 subkey(kGoogleRegClientsKey); 75 subkey.append(1, L'\\').append(app_guid); 78 return reg_key.Open(root_key, subkey.c_str(),
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
cloud_external_data_store.cc | 66 const std::string subkey = GetSubkey(policy, hash); local 67 if (cache_->Load(cache_key_, subkey, data)) { 72 cache_->Delete(cache_key_, subkey);
|
/external/chromium_org/tools/perf_expectations/ |
make_expectations.py | 82 for subkey in ['reva', 'revb']: 83 if subkey in data[key]: 84 rowdata.append('"%s": %s' % (subkey, data[key][subkey])) 86 for subkey in ['type', 'better']: 87 if subkey in data[key]: 88 rowdata.append('"%s": "%s"' % (subkey, data[key][subkey])) 90 for subkey in ['improve', 'regress', 'tolerance']: 91 if subkey in data[key] [all...] |
/external/chromium/net/proxy/ |
proxy_config_service_win.cc | 56 bool CreateRegKey(HKEY rootkey, const wchar_t* subkey) { 57 return key_.Create(rootkey, subkey, KEY_NOTIFY) == ERROR_SUCCESS; 125 const wchar_t* subkey) { 127 if (!entry->CreateRegKey(rootkey, subkey))
|
proxy_config_service_win.h | 61 bool AddKeyToWatchList(HKEY rootkey, const wchar_t* subkey);
|
/external/chromium_org/net/proxy/ |
proxy_config_service_win.h | 62 bool AddKeyToWatchList(HKEY rootkey, const wchar_t* subkey);
|
proxy_config_service_win.cc | 56 bool CreateRegKey(HKEY rootkey, const wchar_t* subkey) { 57 return key_.Create(rootkey, subkey, KEY_NOTIFY) == ERROR_SUCCESS; 125 const wchar_t* subkey) { 127 if (!entry->CreateRegKey(rootkey, subkey))
|
/external/chromium/base/debug/ |
debugger_win.cc | 20 bool RegReadString(HKEY root, const wchar_t* subkey, 23 DWORD res = RegOpenKeyEx(root, subkey, 0, KEY_READ, &key);
|
/external/chromium_org/base/debug/ |
debugger_win.cc | 20 bool RegReadString(HKEY root, const wchar_t* subkey, 23 DWORD res = RegOpenKeyEx(root, subkey, 0, KEY_READ, &key);
|
/external/chromium_org/chrome/installer/util/ |
delete_reg_key_work_item_unittest.cc | 93 RegKey subkey; local 95 EXPECT_EQ(ERROR_SUCCESS, subkey.Create(key.Handle(), L"Subkey", 97 EXPECT_EQ(ERROR_SUCCESS, subkey.WriteValue(L"SomeValue", 1U)); 98 EXPECT_EQ(ERROR_SUCCESS, subkey2.Create(subkey.Handle(), L"Subkey2", 104 RegSetKeySecurity(subkey.Handle(), DACL_SECURITY_INFORMATION, 113 subkey.Close(); 127 EXPECT_EQ(ERROR_SUCCESS, key.OpenKey(L"Subkey", KEY_READ | WRITE_DAC)); 131 // Give users all access to the subkey so it can be deleted.
|
registry_key_backup.cc | 83 // Map of subkey names to the corresponding KeyData. 195 LOG(ERROR) << "Failed getting name of subkey " << i 206 RegKey subkey; local 209 result = subkey.Open(key.Handle(), it->first.c_str(), kKeyReadNoNotify); 211 LOG(ERROR) << "Failed opening subkey \"" << it->first 215 if (!it->second.Initialize(subkey)) { 216 LOG(ERROR) << "Failed backing up subkey \"" << it->first << "\""; 247 RegKey subkey; local 252 result = subkey.Create(key->Handle(), name.c_str(), KEY_WRITE); 254 LOG(ERROR) << "Failed creating subkey \"" << name << "\", result: [all...] |
/external/linux-tools-perf/ |
builtin-help.c | 236 const char *subkey = strrchr(name, '.'); local 238 if (!subkey) 241 if (!strcmp(subkey, ".path")) { 244 return add_man_viewer_path(name, subkey - name, value); 246 if (!strcmp(subkey, ".cmd")) { 249 return add_man_viewer_cmd(name, subkey - name, value); 252 warning("'%s': unsupported man viewer sub key.", subkey);
|
/external/chromium/chrome/browser/autofill/ |
autofill_ie_toolbar_import_win_unittest.cc | 101 RegKey subkey; local 102 subkey.Create(key->Handle(), subkey_name, KEY_ALL_ACCESS); 103 EXPECT_TRUE(subkey.Valid()); 105 EncryptAndWrite(&subkey, values + i);
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_ie_toolbar_import_win_unittest.cc | 102 RegKey subkey; local 103 subkey.Create(key->Handle(), subkey_name, KEY_ALL_ACCESS); 104 EXPECT_TRUE(subkey.Valid()); 106 EncryptAndWrite(&subkey, values + i);
|