Home
last modified time | relevance | path

Searched refs:subkey (Results 1 – 25 of 44) sorted by relevance

12

/external/jemalloc/include/jemalloc/internal/
Drtree.h64 uintptr_t subkey; \
73 subkey = (key << lshift) >> ((ZU(1) << (LG_SIZEOF_PTR + \
75 child = (void**)node[subkey]; \
87 subkey = (key << lshift) >> ((ZU(1) << (LG_SIZEOF_PTR+3)) - \
91 ret = leaf[subkey]; \
133 uintptr_t subkey; in RTREE_GET_GENERATE() local
142 subkey = (key << lshift) >> ((ZU(1) << (LG_SIZEOF_PTR+3)) - in RTREE_GET_GENERATE()
144 child = (void**)node[subkey]; in RTREE_GET_GENERATE()
154 node[subkey] = child; in RTREE_GET_GENERATE()
160 subkey = (key << lshift) >> ((ZU(1) << (LG_SIZEOF_PTR+3)) - bits); in RTREE_GET_GENERATE()
[all …]
/external/chromium_org/components/policy/core/common/cloud/
Dresource_cache.cc74 const std::string& subkey, in Store() argument
88 return VerifyKeyPathAndGetSubkeyPath(key, true, subkey, &subkey_path) && in Store()
94 const std::string& subkey, in Load() argument
99 if (!VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path) || in Load()
120 std::string subkey; in LoadAllSubkeys() local
125 Base64UrlDecode(encoded_subkey, &subkey) && in LoadAllSubkeys()
127 (*contents)[subkey].swap(data); in LoadAllSubkeys()
132 void ResourceCache::Delete(const std::string& key, const std::string& subkey) { in Delete() argument
135 if (VerifyKeyPathAndGetSubkeyPath(key, false, subkey, &subkey_path)) in Delete()
161 std::string subkey; in FilterSubkeys() local
[all …]
Dresource_cache.h39 const std::string& subkey,
46 const std::string& subkey,
54 void Delete(const std::string& key, const std::string& subkey);
84 const std::string& subkey,
/external/chromium_org/base/win/
Dregistry.cc51 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access) in RegKey() argument
57 Create(rootkey, subkey, access); in RegKey()
59 Open(rootkey, subkey, access); in RegKey()
61 DCHECK(!subkey); in RegKey()
70 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) { in Create() argument
72 return CreateWithDisposition(rootkey, subkey, &disposition_value, access); in Create()
75 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey, in CreateWithDisposition() argument
77 DCHECK(rootkey && subkey && access && disposition); in CreateWithDisposition()
79 LONG result = RegCreateKeyEx(rootkey, subkey, 0, NULL, in CreateWithDisposition()
102 HKEY subkey = NULL; in CreateKey() local
[all …]
Dregistry.h30 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,
42 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
/external/chromium_org/tools/perf_expectations/
Dmake_expectations.py82 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]:
92 rowdata.append('"%s": %s' % (subkey, data[key][subkey]))
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
DRegionData.java72 boolean isValidName(String subkey) { in isValidName() argument
73 if (subkey == null) { in isValidName()
76 if (subkey.equalsIgnoreCase(mKey) || subkey.equalsIgnoreCase(mName)) { in isValidName()
/external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
DFormControllerTest.java107 String subkey = rdata.get(0).getKey(); in testRequestDataForBadAddress()
108 assertNotNull("Should be the first US state", subkey); in testRequestDataForBadAddress()
110 new LookupKey.Builder(usKey.toString() + "/" + subkey).build(); in testRequestDataForBadAddress()
141 String subkey = rdata.get(0).getKey(); in testRequestDataForCountry()
142 assertNotNull("Should be the first US state", subkey); in testRequestDataForCountry()
144 new LookupKey.Builder(usKey.toString() + "/" + subkey).build(); in testRequestDataForCountry()
/external/chromium_org/chrome/installer/launcher_support/
Dchrome_launcher_support.cc59 base::string16 subkey(kGoogleRegClientStateKey); in GetClientStateValue() local
60 subkey.append(1, L'\\').append(app_guid); in GetClientStateValue()
63 if (reg_key.Open(root_key, subkey.c_str(), in GetClientStateValue()
77 base::string16 subkey(kGoogleRegClientsKey); in IsProductInstalled() local
78 subkey.append(1, L'\\').append(app_guid); in IsProductInstalled()
81 return reg_key.Open(root_key, subkey.c_str(), in IsProductInstalled()
/external/chromium_org/chrome/installer/util/
Ddelete_reg_key_work_item_unittest.cc93 RegKey subkey; in TEST_F() local
95 EXPECT_EQ(ERROR_SUCCESS, subkey.Create(key.Handle(), L"Subkey", in TEST_F()
97 EXPECT_EQ(ERROR_SUCCESS, subkey.WriteValue(L"SomeValue", 1U)); in TEST_F()
98 EXPECT_EQ(ERROR_SUCCESS, subkey2.Create(subkey.Handle(), L"Subkey2", in TEST_F()
104 RegSetKeySecurity(subkey.Handle(), DACL_SECURITY_INFORMATION, in TEST_F()
113 subkey.Close(); in TEST_F()
Dregistry_key_backup.cc206 RegKey subkey; in Initialize() local
209 result = subkey.Open(key.Handle(), it->first.c_str(), kKeyReadNoNotify); in Initialize()
215 if (!it->second.Initialize(subkey)) { in Initialize()
247 RegKey subkey; in WriteTo() local
252 result = subkey.Create(key->Handle(), name.c_str(), KEY_WRITE); in WriteTo()
258 if (!it->second.WriteTo(&subkey)) { in WriteTo()
/external/chromium_org/components/policy/core/browser/
Dpolicy_error_map.cc66 const std::string& subkey, in DictSubkeyPendingError() argument
70 subkey_(subkey) {} in DictSubkeyPendingError()
145 const std::string& subkey, in AddError() argument
148 new DictSubkeyPendingError(policy, subkey, message_id, std::string())); in AddError()
164 const std::string& subkey, in AddError() argument
167 AddError(new DictSubkeyPendingError(policy, subkey, message_id, replacement)); in AddError()
Dpolicy_error_map.h42 const std::string& subkey,
62 const std::string& subkey,
/external/chromium_org/sandbox/win/tests/validation_tests/
Dcommands.cc178 base::string16 subkey; in OpenKey() local
180 subkey = argv[1]; in OpenKey()
181 trim_quote(&subkey); in OpenKey()
184 return TestOpenKey(base_key, subkey); in OpenKey()
187 int TestOpenKey(HKEY base_key, base::string16 subkey) { in TestOpenKey() argument
190 subkey.c_str(), in TestOpenKey()
Dcommands.h30 int TestOpenKey(HKEY base_key, base::string16 subkey);
/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
Dcountry_rules_aggregator.cc139 const std::string& subkey = key + "/" + ruleset->rule().GetSubKeys()[i]; in Build() local
142 language_specific_subkeys[subkey][*non_default_language_it] = in Build()
155 std::string subkey = key + "/" + *subkey_it; in Build() local
157 Build(subkey, in Build()
159 language_specific_subkeys[subkey]); in Build()
/external/chromium_org/net/proxy/
Dproxy_config_service_win.cc57 bool CreateRegKey(HKEY rootkey, const wchar_t* subkey) { in CreateRegKey() argument
58 return key_.Create(rootkey, subkey, KEY_NOTIFY) == ERROR_SUCCESS; in CreateRegKey()
126 const wchar_t* subkey) { in AddKeyToWatchList() argument
128 if (!entry->CreateRegKey(rootkey, subkey)) in AddKeyToWatchList()
Dproxy_config_service_win.h62 bool AddKeyToWatchList(HKEY rootkey, const wchar_t* subkey);
/external/linux-tools-perf/perf-3.12.0/tools/perf/
Dbuiltin-help.c222 const char *subkey = strrchr(name, '.'); in add_man_viewer_info() local
224 if (!subkey) in add_man_viewer_info()
227 if (!strcmp(subkey, ".path")) { in add_man_viewer_info()
230 return add_man_viewer_path(name, subkey - name, value); in add_man_viewer_info()
232 if (!strcmp(subkey, ".cmd")) { in add_man_viewer_info()
235 return add_man_viewer_cmd(name, subkey - name, value); in add_man_viewer_info()
238 warning("'%s': unsupported man viewer sub key.", subkey); in add_man_viewer_info()
/external/chromium_org/chrome/browser/chromeos/policy/
Dcloud_external_data_store.cc66 const std::string subkey = GetSubkey(policy, hash); in Load() local
67 if (cache_->Load(cache_key_, subkey, data)) { in Load()
72 cache_->Delete(cache_key_, subkey); in Load()
Dconfiguration_policy_handler_chromeos.cc46 const std::string& subkey, in GetSubkeyString() argument
49 if (!dict.GetWithoutPathExpansion(subkey, &raw_value)) { in GetSubkeyString()
50 errors->AddError(policy, subkey, IDS_POLICY_NOT_SPECIFIED_ERROR); in GetSubkeyString()
55 errors->AddError(policy, subkey, IDS_POLICY_TYPE_ERROR, "string"); in GetSubkeyString()
59 errors->AddError(policy, subkey, IDS_POLICY_NOT_SPECIFIED_ERROR); in GetSubkeyString()
/external/chromium_org/components/autofill/core/browser/
Dautofill_ie_toolbar_import_win_unittest.cc102 RegKey subkey; in CreateSubkey() local
103 subkey.Create(key->Handle(), subkey_name, KEY_ALL_ACCESS); in CreateSubkey()
104 EXPECT_TRUE(subkey.Valid()); in CreateSubkey()
106 EncryptAndWrite(&subkey, values + i); in CreateSubkey()
/external/chromium_org/native_client_sdk/src/resources/
DMakefile.library.template17 [[ for subkey in value:]]
19 [[ out.extend(value[subkey])]]
21 {{key}}_{{subkey}} = {{' '.join(out)}}
DMakefile.example.template21 [[ for subkey in value:]]
23 [[ out.extend(value[subkey])]]
25 {{key}}_{{subkey}} = {{' '.join(out)}}
/external/chromium_org/tools/binary_size/
Drun_binary_size_analysis.py298 subkey = 'misc'
301 subkey = '__FUNCTION__'
303 subkey = 'CSWTCH'
305 subkey = sym[0:sym.find('::') + 2]
306 tree['sizes'][subkey] = tree['sizes'].get(subkey, 0) + size

12