Home
last modified time | relevance | path

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

12

/external/jemalloc/include/jemalloc/internal/
Drtree.h246 uintptr_t subkey; in rtree_get() local
260 subkey = rtree_subkey(rtree, key, level - \ in rtree_get()
262 node = rtree_child_tryread(&node[subkey], dependent); \ in rtree_get()
269 subkey = rtree_subkey(rtree, key, level - \ in rtree_get()
275 return (rtree_val_read(rtree, &node[subkey], \ in rtree_get()
337 uintptr_t subkey; in rtree_set() local
347 subkey = rtree_subkey(rtree, key, i); in rtree_set()
353 rtree_val_write(rtree, &node[subkey], val); in rtree_set()
357 child = rtree_child_read(rtree, &node[subkey], i, false); in rtree_set()
/external/python/cpython3/Lib/test/test_importlib/
Dtest_windows.py20 def delete_registry_tree(root, subkey): argument
22 hkey = OpenKey(root, subkey, access=KEY_ALL_ACCESS)
34 DeleteKey(root, subkey)
46 subkey = CreateKey(HKEY_CURRENT_USER, key)
49 SetValue(subkey, "", REG_SZ, path)
/external/vboot_reference/scripts/keygeneration/
Dincrement_kernel_subkey.sh19 Increments the kernel subkey in the specified keyset.
34 Generating new kernel subkey and new kernel keyblock.
36 New Firmware version (due to kernel subkey change): ${new_firm_ver}.
Dincrement_kernel_subkey_and_key.sh19 Increments the kernel subkey, data key and firmware version in the
37 Generating new kernel subkey, data keys and new kernel keyblock.
39 New Firmware version (due to kernel subkey change): ${new_firm_ver}.
/external/autotest/server/site_tests/firmware_UpdateKernelSubkeyVersion/
Dcontrol10 Servo based firmware update test, and check kernel subkey version.
15 2. Kernel subkey version does not match original kernel subkey version.
27 autoupdate. Check kernel subkey version after boot with firmware B, and then
/external/jemalloc_new/src/
Drtree.c252 uintptr_t subkey = rtree_subkey(key, level); \ in rtree_leaf_elm_lookup_hard()
256 &node[subkey], level, dependent) : \ in rtree_leaf_elm_lookup_hard()
257 rtree_child_node_tryread(&node[subkey], \ in rtree_leaf_elm_lookup_hard()
262 &node[subkey], level, dependent) : \ in rtree_leaf_elm_lookup_hard()
263 rtree_child_leaf_tryread(&node[subkey], \ in rtree_leaf_elm_lookup_hard()
294 uintptr_t subkey = rtree_subkey(key, level); \ in rtree_leaf_elm_lookup_hard()
295 return &leaf[subkey]; \ in rtree_leaf_elm_lookup_hard()
/external/toolchain-utils/cros_utils/
Dbuildbot_json.py200 def __init__(self, parent, subkey): argument
202 self.subkey = subkey
208 return self.parent.cached_data[self.subkey]
212 return self.parent.data[self.subkey]
315 def __init__(self, parent, subkey): argument
317 self.subkey = subkey
325 for i in range(len(self.parent.cached_data[self.subkey])):
332 return self.parent.data.get(self.subkey, None)
338 return list(range(len(self.parent.data.get(self.subkey, []))))
342 return self.parent.data[self.subkey]
[all …]
/external/tensorflow/tensorflow/python/autograph/impl/
Dconversion.py119 def has(self, entity, subkey): argument
123 return subkey in self._cache[key]
261 subkey = (program_ctx.options, frozenset(free_nonglobal_var_names))
265 if _CACHE.has(entity, subkey):
267 converted_entity_info = _CACHE[entity][subkey]
268 logging.log(3, 'Cache hit for entity %s subkey %s: %s', entity, subkey,
272 logging.log(1, 'Entity %s is not cached for subkey %s', entity, subkey)
294 _CACHE[entity][subkey] = converted_entity_info
/external/python/cpython2/Lib/test/
Dtest_mimetypes.py103 return lambda subkey, label: (u'текст/простой' , _winreg.REG_SZ)
120 return lambda subkey, label: (u'текст/простой', _winreg.REG_SZ)
137 return lambda subkey, label: (u'text/plain', _winreg.REG_SZ)
Dtest_winreg.py65 def delete_tree(self, root, subkey): argument
67 hkey = OpenKey(root, subkey, KEY_ALL_ACCESS)
79 DeleteKey(root, subkey)
/external/python/cpython3/Tools/msi/bundle/bootstrap/
DPythonBootstrapperApplication.cpp2817 __in LPCWSTR subkey in LoadOptionalFeatureStatesFromKey() argument
2823 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_64KEY, &hKey); in LoadOptionalFeatureStatesFromKey()
2825 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_32KEY, &hKey); in LoadOptionalFeatureStatesFromKey()
2853 __in LPCWSTR subkey in LoadTargetDirFromKey() argument
2862 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_64KEY, &hKey); in LoadTargetDirFromKey()
2864 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_32KEY, &hKey); in LoadTargetDirFromKey()
2885 const LPCWSTR subkey = L"Software\\Python\\PyLauncher"; in LoadAssociateFilesStateFromKey() local
2890 res = RegOpenKeyExW(hkHive, subkey, 0, KEY_READ | KEY_WOW64_32KEY, &hKey); in LoadAssociateFilesStateFromKey()
2914 WCHAR subkey[256]; in LoadOptionalFeatureStates() local
2931 subkeyLen = sizeof(subkey) / sizeof(subkey[0]); in LoadOptionalFeatureStates()
[all …]
/external/kmod/libkmod/
Dlibkmod-index.c486 const char *subkey, in index_searchwild__all() argument
507 index_searchwild__all(child, 0, buf, subkey, out); in index_searchwild__all()
512 if (fnmatch(strbuf_str(buf), subkey, 0) == 0) in index_searchwild__all()
961 const char *subkey, in index_mm_searchwild_all() argument
982 index_mm_searchwild_all(child, 0, buf, subkey, out); in index_mm_searchwild_all()
987 if (fnmatch(strbuf_str(buf), subkey, 0) == 0) in index_mm_searchwild_all()
/external/jemalloc_new/include/jemalloc/internal/
Drtree.h345 uintptr_t subkey = rtree_subkey(key, RTREE_HEIGHT-1); in rtree_leaf_elm_lookup() local
346 return &leaf[subkey]; in rtree_leaf_elm_lookup()
379 uintptr_t subkey = rtree_subkey(key, RTREE_HEIGHT-1); \ in rtree_leaf_elm_lookup()
380 return &leaf[subkey]; \ in rtree_leaf_elm_lookup()
/external/python/cpython2/Doc/library/
D_winreg.rst103 *sub_key* is a string that must be a subkey of the key identified by the *key*
125 *sub_key* is a string that must be a subkey of the key identified by the
165 The function retrieves the name of one subkey each time it is called. It is
179 The function retrieves the name of one subkey each time it is called. It is
233 Creates a subkey under the specified key and stores registration information
234 from a specified file into that subkey.
239 *sub_key* is a string that identifies the subkey to load.
312 *sub_key* is a string that holds the name of the subkey with which the value is
375 *sub_key* is a string that names the subkey with which the value is associated.
401 *value_name* is a string that names the subkey with which the value is
[all …]
/external/python/cpython3/Doc/library/
Dwinreg.rst129 *sub_key* is a string that must be a subkey of the key identified by the *key*
156 *sub_key* is a string that must be a subkey of the key identified by the
202 The function retrieves the name of one subkey each time it is called. It is
221 The function retrieves the name of one subkey each time it is called. It is
283 Creates a subkey under the specified key and stores registration information
284 from a specified file into that subkey.
289 *sub_key* is a string that identifies the subkey to load.
371 *sub_key* is a string that holds the name of the subkey with which the value is
440 *sub_key* is a string that names the subkey with which the value is associated.
468 *value_name* is a string that names the subkey with which the value is
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DValidIdentifiers.java148 Datasubtype subkey = Datasubtype.valueOf(rawsubkey);
158 values.put(subkey, new ValiditySet(subvalues, key == Datatype.subdivision));
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DValidIdentifiers.java137 Datasubtype subkey = Datasubtype.valueOf(rawsubkey);
147 values.put(subkey, new ValiditySet(subvalues, key == Datatype.subdivision));
/external/python/cpython3/Lib/
Dmimetypes.py259 with _winreg.OpenKey(hkcr, subkeyname) as subkey:
265 subkey, 'Content Type')
/external/python/cpython2/Lib/
Dmimetypes.py257 with _winreg.OpenKey(hkcr, subkeyname) as subkey:
263 subkey, 'Content Type')
/external/python/cpython3/Lib/test/
Dtest_winreg.py59 def delete_tree(self, root, subkey): argument
61 hkey = OpenKey(root, subkey, 0, KEY_ALL_ACCESS)
73 DeleteKey(root, subkey)
/external/autotest/client/site_tests/firmware_TouchMTB/
Dfirmware_summary.py307 subkey = lambda key: (key[2], key[3], key[1]) function
334 value_list = sorted([(subkey(metric.key), metric.value)
/external/autotest/cli/
Dtopic_common.py170 for subkey in key.split('.'):
171 if not subkey:
174 nested_item = nested_item[subkey]
/external/wpa_supplicant_8/wpa_supplicant/
DREADME-Windows.txt258 parameters and a 'interfaces' subkey with all the interface configuration
259 (adapter to confname mapping). Each such mapping is a subkey that has
289 networks as a subkey. Each network has set of values in the same way as
290 network block in the configuration file. In addition, blobs subkey has
/external/ImageMagick/MagickCore/
Dnt-base.c2094 MagickPrivate unsigned char *NTRegistryKeyLookup(const char *subkey) in NTRegistryKeyLookup() argument
2136 (void) LogMagickEvent(ConfigureEvent,GetMagickModule(),"%s",subkey); in NTRegistryKeyLookup()
2137 status=RegQueryValueExA(registry_key,subkey,0,&type,value,&size); in NTRegistryKeyLookup()
2146 status=RegQueryValueExA(registry_key,subkey,0,&type,value,&size); in NTRegistryKeyLookup()
/external/python/parse_type/parse_type/
Dparse.py850 for subkey in re.findall(r'\[[^\]]+\]', subkeys):
852 k = subkey[1:-1]

12