Home
last modified time | relevance | path

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

12

/external/ms-tpm-20-ref/TPMCmd/tpm/src/crypt/
DCryptCmac.c144 TPM2B_IV subkey = {{0, {0}}}; in CryptCmacEnd() local
148 subkey.t.size = cState->iv.t.size; in CryptCmacEnd()
157 ENCRYPT(&keySchedule, subkey.t.buffer, subkey.t.buffer); in CryptCmacEnd()
160 xorVal = ((subkey.t.buffer[0] & 0x80) == 0) ? 0 : 0x87; in CryptCmacEnd()
161 ShiftLeft(&subkey.b); in CryptCmacEnd()
162 subkey.t.buffer[subkey.t.size - 1] ^= xorVal; in CryptCmacEnd()
174 xorVal = ((subkey.t.buffer[0] & 0x80) == 0) ? 0 : 0x87; in CryptCmacEnd()
175 ShiftLeft(&subkey.b); in CryptCmacEnd()
176 subkey.t.buffer[subkey.t.size - 1] ^= xorVal; in CryptCmacEnd()
179 for(i = 0; i < subkey.t.size; i++) in CryptCmacEnd()
[all …]
/external/webrtc/rtc_base/win/
Dwindows_version.cc41 RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access) in RegKey() argument
45 Create(rootkey, subkey, access); in RegKey()
47 Open(rootkey, subkey, access); in RegKey()
49 RTC_DCHECK(!subkey); in RegKey()
56 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) { in Create() argument
58 return CreateWithDisposition(rootkey, subkey, &disposition_value, access); in Create()
62 const wchar_t* subkey, in CreateWithDisposition() argument
65 RTC_DCHECK(rootkey && subkey && access && disposition); in CreateWithDisposition()
68 ::RegCreateKeyExW(rootkey, subkey, 0, NULL, REG_OPTION_NON_VOLATILE, in CreateWithDisposition()
80 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access) { in Open() argument
[all …]
/external/libwebsockets/lib/plat/windows/
Dwindows-resolv.c42 char subkey[512], dhcpns[512], ns[512], value[128], *key = in lws_plat_asyncdns_init() local
54 for (i = 0; RegEnumKey(hKey, i, subkey, sizeof(subkey)) == ERROR_SUCCESS; i++) { in lws_plat_asyncdns_init()
57 if (RegOpenKey(hKey, subkey, &hSub) == ERROR_SUCCESS && in lws_plat_asyncdns_init()
/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.
28 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/tensorflow/tensorflow/python/autograph/pyct/
Dcache.py43 def has(self, entity, subkey): argument
48 return subkey in parent
/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()
968 const char *subkey, in index_mm_searchwild_all() argument
989 index_mm_searchwild_all(child, 0, buf, subkey, out); in index_mm_searchwild_all()
994 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/cpython2/Lib/
Dmimetypes.py257 with _winreg.OpenKey(hkcr, subkeyname) as subkey:
263 subkey, 'Content Type')
/external/python/cpython3/Lib/
Dmimetypes.py259 with _winreg.OpenKey(hkcr, subkeyname) as subkey:
265 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/libchrome/build/
Dvs_toolchain.py101 root, subkey = key.split('\\', 1)
103 with _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, subkey) as hkey:
/external/autotest/cli/
Dtopic_common.py172 for subkey in key.split('.'):
173 if not subkey:
176 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.c2022 MagickPrivate unsigned char *NTRegistryKeyLookup(const char *subkey) in NTRegistryKeyLookup() argument
2064 (void) LogMagickEvent(ConfigureEvent,GetMagickModule(),"%s",subkey); in NTRegistryKeyLookup()
2065 status=RegQueryValueExA(registry_key,subkey,0,&type,value,&size); in NTRegistryKeyLookup()
2074 status=RegQueryValueExA(registry_key,subkey,0,&type,value,&size); in NTRegistryKeyLookup()

12