/external/jemalloc/include/jemalloc/internal/ |
D | rtree.h | 246 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/vboot_reference/scripts/keygeneration/ |
D | increment_kernel_subkey.sh | 19 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}.
|
D | increment_kernel_subkey_and_key.sh | 19 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/ |
D | control | 10 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/toolchain-utils/cros_utils/ |
D | buildbot_json.py | 194 def __init__(self, parent, subkey): argument 196 self.subkey = subkey 202 return self.parent.cached_data[self.subkey] 206 return self.parent.data[self.subkey] 309 def __init__(self, parent, subkey): argument 311 self.subkey = subkey 319 for i in xrange(len(self.parent.cached_data[self.subkey])): 326 return self.parent.data.get(self.subkey, None) 332 return range(len(self.parent.data.get(self.subkey, []))) 336 return self.parent.data[self.subkey] [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_mimetypes.py | 103 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)
|
D | test_winreg.py | 65 def delete_tree(self, root, subkey): argument 67 hkey = OpenKey(root, subkey, KEY_ALL_ACCESS) 79 DeleteKey(root, subkey)
|
/external/kmod/libkmod/ |
D | libkmod-index.c | 486 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/c-ares/ |
D | ares_init.c | 545 static int get_res_nt(HKEY hKey, const char *subkey, char **obuf) in get_res_nt() argument 551 result = RegQueryValueEx(hKey, subkey, 0, NULL, NULL, &size); in get_res_nt() 558 if (RegQueryValueEx(hKey, subkey, 0, NULL, in get_res_nt() 572 static int get_res_interfaces_nt(HKEY hKey, const char *subkey, char **obuf) in get_res_interfaces_nt() argument 588 rc = get_res_nt(hVal, subkey, obuf); in get_res_interfaces_nt() 823 HKEY subkey; in init_by_resolv_conf() local 850 KEY_QUERY_VALUE|KEY_ENUMERATE_SUB_KEYS, &subkey); in init_by_resolv_conf() 862 else if (get_res_interfaces_nt(subkey, NAMESERVER, &line)) in init_by_resolv_conf() 867 else if (get_res_interfaces_nt(subkey, DHCPNAMESERVER, &line)) in init_by_resolv_conf() 872 RegCloseKey(subkey); in init_by_resolv_conf()
|
/external/python/cpython2/Doc/library/ |
D | _winreg.rst | 103 *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/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | ValidIdentifiers.java | 138 Datasubtype subkey = Datasubtype.valueOf(rawsubkey); 148 values.put(subkey, new ValiditySet(subvalues, key == Datatype.subdivision));
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ValidIdentifiers.java | 136 Datasubtype subkey = Datasubtype.valueOf(rawsubkey); 146 values.put(subkey, new ValiditySet(subvalues, key == Datatype.subdivision));
|
/external/python/cpython2/Lib/ |
D | mimetypes.py | 257 with _winreg.OpenKey(hkcr, subkeyname) as subkey: 263 subkey, 'Content Type')
|
/external/autotest/cli/ |
D | topic_common.py | 150 for subkey in key.split('.'): 151 if not subkey: 154 nested_item = nested_item[subkey]
|
/external/v8/gypfiles/ |
D | vs_toolchain.py | 95 root, subkey = key.split('\\', 1) 97 with _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, subkey) as hkey:
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
D | firmware_summary.py | 307 subkey = lambda key: (key[2], key[3], key[1]) function 334 value_list = sorted([(subkey(metric.key), metric.value)
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | README-Windows.txt | 258 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/ |
D | nt-base.c | 1982 MagickPrivate unsigned char *NTRegistryKeyLookup(const char *subkey) in NTRegistryKeyLookup() argument 2026 (void) LogMagickEvent(ConfigureEvent,GetMagickModule(),"%s",subkey); in NTRegistryKeyLookup() 2027 status=RegQueryValueExA(registry_key,subkey,0,&type,value,&size); in NTRegistryKeyLookup() 2036 status=RegQueryValueExA(registry_key,subkey,0,&type,value,&size); in NTRegistryKeyLookup()
|
/external/ipsec-tools/src/racoon/ |
D | oakley.c | 2882 int subkey; local 2905 subkey = 1; 2919 subkey); 2938 subkey++;
|
/external/libevent/ |
D | evdns.c | 3723 config_nameserver_from_reg_key(struct evdns_base *base, HKEY key, const TCHAR *subkey) in config_nameserver_from_reg_key() argument 3730 if (RegQueryValueEx(key, subkey, 0, &type, NULL, &bufsz) in config_nameserver_from_reg_key() 3736 if (RegQueryValueEx(key, subkey, 0, &type, (LPBYTE)buf, &bufsz) in config_nameserver_from_reg_key()
|