Home
last modified time | relevance | path

Searched refs:hkey (Results 1 – 10 of 10) sorted by relevance

/external/icu/icu4c/source/common/
Dwintz.c97 HKEY hkey; in detectWindowsType() local
109 &hkey); in detectWindowsType()
110 RegCloseKey(hkey); in detectWindowsType()
120 static LONG openTZRegKey(HKEY *hkey, const char *winid) in openTZRegKey() argument
147 hkey); in openTZRegKey()
155 HKEY hkey; in getTZI() local
157 result = openTZRegKey(&hkey, winid); in getTZI()
160 result = RegQueryValueExA(hkey, in getTZI()
169 RegCloseKey(hkey); in getTZI()
177 HKEY hkey; in getSTDName() local
[all …]
/external/curl/lib/
Dhmac.c57 unsigned char * hkey; in Curl_HMAC_init() local
77 hkey = (unsigned char *) ctxt->hmac_hashctxt2 + hashparams->hmac_ctxtsize; in Curl_HMAC_init()
78 (*hashparams->hmac_hfinal)(hkey, ctxt->hmac_hashctxt1); in Curl_HMAC_init()
79 key = hkey; in Curl_HMAC_init()
Dcurl_ntlm_core.c309 HCRYPTKEY hkey; in encrypt_des() local
336 if(!CryptImportKey(hprov, (BYTE *) &blob, sizeof(blob), 0, 0, &hkey)) { in encrypt_des()
345 CryptEncrypt(hkey, 0, FALSE, 0, out, &len, len); in encrypt_des()
347 CryptDestroyKey(hkey); in encrypt_des()
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
Dlist_ports_windows.py155 hkey = SetupDiOpenDevRegKey(
165 hkey,
171 RegCloseKey(hkey)
/external/ImageMagick/MagickCore/
Dnt-base.c125 hkey; member
1061 hkey; in NTGetRegistryValue() local
1069 if (RegOpenKeyExA(root,key,0,KEY_READ | flags,&hkey) != ERROR_SUCCESS) in NTGetRegistryValue()
1076 status=RegQueryValueExA(hkey,(char *) name,0,&type,p,&extent); in NTGetRegistryValue()
1077 RegCloseKey(hkey); in NTGetRegistryValue()
1123 hkey; in NTLocateGhostscript() local
1136 if (RegOpenKeyExA(registry_roots[j].hkey,key,0,mode,&hkey) == in NTLocateGhostscript()
1149 for (k=0; RegEnumKeyA(hkey,k,key,extent) == ERROR_SUCCESS; k++) in NTLocateGhostscript()
1169 (void) RegCloseKey(hkey); in NTLocateGhostscript()
1274 if (NTGetRegistryValue(registry_roots[root_index].hkey,buffer,flags,name, in NTGhostscriptGetString()
/external/v8/tools/gyp/pylib/gyp/
DMSVSVersion.py193 with _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, subkey) as hkey:
194 return _winreg.QueryValueEx(hkey, value)[0]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
Dutils.py184 for hkey in headers.keys():
185 if hkey.lower().startswith(metadata_prefix):
186 val = urllib.parse.unquote(headers[hkey])
193 metadata[hkey[len(metadata_prefix):]] = val
194 del headers[hkey]
/external/v8/build/
Dvs_toolchain.py95 with _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, subkey) as hkey:
96 return _winreg.QueryValueEx(hkey, value)[0]
/external/v8/gypfiles/
Dvs_toolchain.py97 with _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, subkey) as hkey:
98 return _winreg.QueryValueEx(hkey, value)[0]
/external/clang/lib/Driver/
DMSVCToolChain.cpp90 static bool readFullStringValue(HKEY hkey, const char *valueName, in readFullStringValue() argument
101 result = RegQueryValueEx(hkey, valueName, NULL, &type, NULL, &valueSize); in readFullStringValue()
105 result = RegQueryValueEx(hkey, valueName, NULL, NULL, &buffer[0], &valueSize); in readFullStringValue()