HomeSort by relevance Sort by last modified time
    Searched refs:subkey (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/policy/
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 35 // Adds an entry with key |policy|, subkey |subkey|, and the error message
38 const std::string& subkey,
54 // Adds an entry with key |policy|, subkey |subkey| and the error message
58 const std::string& subkey,
  /external/chromium_org/chrome/browser/policy/cloud/
resource_cache.h 19 // a subkey, and can be queried by (key, subkey) or (key) lookups.
29 // Stores |data| under (key, subkey). Returns true if the store suceeded, and
32 const std::string& subkey,
35 // Loads the contents of (key, subkey) into |data| and returns true. Returns
36 // false if (key, subkey) isn't found or if there is a problem reading the
39 const std::string& subkey,
46 // Deletes (key, subkey).
47 void Delete(const std::string& key, const std::string& subkey);
64 // Points |path| at the file in which data for (key, subkey) should be store
    [all...]
resource_cache.cc 68 const std::string& subkey,
81 return VerifyKeyPathAndGetSubkeyPath(key, true, subkey, &subkey_path) &&
87 const std::string& subkey,
92 if (!VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path) ||
113 std::string subkey; local
118 Base64Decode(encoded_subkey, &subkey) &&
120 (*contents)[subkey].swap(data);
125 void ResourceCache::Delete(const std::string& key, const std::string& subkey) {
128 if (VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path))
131 // call below deletes the directory representing |key| if its last subkey wa
    [all...]
cloud_external_data_store.cc 62 const std::string subkey = GetSubkey(policy, hash); local
63 if (cache_->Load(cache_key_, subkey, data)) {
68 cache_->Delete(cache_key_, subkey);
  /external/chromium_org/sandbox/win/tests/validation_tests/
commands.h 26 int TestOpenKey(HKEY base_key, std::wstring subkey);
commands.cc 176 // Get the subkey.
177 std::wstring subkey; local
179 subkey = argv[1];
180 trim_quote(&subkey);
183 return TestOpenKey(base_key, subkey);
186 int TestOpenKey(HKEY base_key, std::wstring subkey) {
189 subkey.c_str(),
  /external/openssh/
acss.h 36 unsigned char subkey[ACSS_KEYSIZE]; member in struct:acss_key_st
  /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/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/chromium_org/native_client_sdk/src/build_tools/
library.mk 17 [[ for subkey in value:]]
19 [[ out.extend(value[subkey])]]
21 {{key}}_{{subkey}} = {{' '.join(out)}}
  /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_org/chrome/test/install_test/
chrome_installer_win.py 138 def DoesKeyExist(self, install_type, subkey):
143 subkey: Subkey to look up. It must be a ChromeRegistryValues type.
149 key_name = self._GetKeyName(install_type, subkey)
159 def GetKeyValue(self, install_type, subkey):
160 """Gets value of the specified subkey from the registry.
164 subkey: ChromeRegistryValue type representing the value to be returned.
167 A string representing the subkey value.
170 key_name = self._GetKeyName(install_type, subkey)
172 reg_value = str(_winreg.QueryValueEx(hkey, subkey)[0]
    [all...]

Completed in 540 milliseconds

1 2 3