HomeSort by relevance Sort by last modified time
    Searched refs:hkey (Results 1 - 17 of 17) sorted by null

  /external/icu/icu4c/source/common/
wintz.c 97 HKEY hkey; local
109 &hkey);
110 RegCloseKey(hkey);
120 static LONG openTZRegKey(HKEY *hkey, const char *winid)
147 hkey);
155 HKEY hkey; local
157 result = openTZRegKey(&hkey, winid)
177 HKEY hkey; local
197 HKEY hkey; local
    [all...]
  /external/curl/lib/
hmac.c 54 unsigned char * hkey; local
74 hkey = (unsigned char *) ctxt->hmac_hashctxt2 + hashparams->hmac_ctxtsize;
75 (*hashparams->hmac_hfinal)(hkey, ctxt->hmac_hashctxt1);
76 key = hkey;
curl_ntlm_core.c 314 HCRYPTKEY hkey; local
341 if(!CryptImportKey(hprov, (BYTE *) &blob, sizeof(blob), 0, 0, &hkey)) {
350 CryptEncrypt(hkey, 0, FALSE, 0, out, &len, len);
352 CryptDestroyKey(hkey);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
shlwapi.h 568 LWSTDAPI_(DWORD) SHDeleteEmptyKeyA(HKEY hkey,LPCSTR pszSubKey);
569 LWSTDAPI_(DWORD) SHDeleteEmptyKeyW(HKEY hkey,LPCWSTR pszSubKey);
573 LWSTDAPI_(DWORD) SHDeleteKeyA(HKEY hkey,LPCSTR pszSubKey);
574 LWSTDAPI_(DWORD) SHDeleteKeyW(HKEY hkey,LPCWSTR pszSubKey);
578 LWSTDAPI_(HKEY) SHRegDuplicateHKey(HKEY hkey) variable
    [all...]
winreg.h 37 #define HKEY_CLASSES_ROOT ((HKEY) (ULONG_PTR)((LONG)0x80000000))
38 #define HKEY_CURRENT_USER ((HKEY) (ULONG_PTR)((LONG)0x80000001))
39 #define HKEY_LOCAL_MACHINE ((HKEY) (ULONG_PTR)((LONG)0x80000002))
40 #define HKEY_USERS ((HKEY) (ULONG_PTR)((LONG)0x80000003))
41 #define HKEY_PERFORMANCE_DATA ((HKEY) (ULONG_PTR)((LONG)0x80000004))
42 #define HKEY_PERFORMANCE_TEXT ((HKEY) (ULONG_PTR)((LONG)0x80000050))
43 #define HKEY_PERFORMANCE_NLSTEXT ((HKEY) (ULONG_PTR)((LONG)0x80000060))
44 #define HKEY_CURRENT_CONFIG ((HKEY) (ULONG_PTR)((LONG)0x80000005))
45 #define HKEY_DYN_DATA ((HKEY) (ULONG_PTR)((LONG)0x80000006))
140 WINADVAPI LONG WINAPI RegCloseKey(HKEY hKey)
    [all...]
netmon.h     [all...]
shlobj.h     [all...]
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
list_ports_windows.py 19 from ctypes.wintypes import HKEY
104 SetupDiOpenDevRegKey.restype = HKEY
108 RegCloseKey.argtypes = [HKEY]
112 RegQueryValueEx.argtypes = [HKEY, LPCSTR, LPDWORD, LPDWORD, LPBYTE, LPDWORD]
155 hkey = SetupDiOpenDevRegKey(
165 hkey,
171 RegCloseKey(hkey)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_winreg.py 67 hkey = OpenKey(root, subkey, KEY_ALL_ACCESS)
73 subsubkey = EnumKey(hkey, 0)
77 self.delete_tree(hkey, subsubkey)
78 CloseKey(hkey)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_winreg.py 67 hkey = OpenKey(root, subkey, KEY_ALL_ACCESS)
73 subsubkey = EnumKey(hkey, 0)
77 self.delete_tree(hkey, subsubkey)
78 CloseKey(hkey)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_winreg.py 67 hkey = OpenKey(root, subkey, KEY_ALL_ACCESS)
73 subsubkey = EnumKey(hkey, 0)
77 self.delete_tree(hkey, subsubkey)
78 CloseKey(hkey)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_winreg.py 67 hkey = OpenKey(root, subkey, KEY_ALL_ACCESS)
73 subsubkey = EnumKey(hkey, 0)
77 self.delete_tree(hkey, subsubkey)
78 CloseKey(hkey)
  /external/ImageMagick/MagickCore/
nt-base.c 127 const HKEY
128 hkey;
125 hkey; member in struct:__anon6642
1061 hkey; local
1123 hkey; local
    [all...]
  /external/opencv3/modules/highgui/src/
window_w32.cpp 307 HKEY hkey; local
315 if( RegOpenKeyEx(HKEY_CURRENT_USER,szKey,0,KEY_QUERY_VALUE,&hkey) == ERROR_SUCCESS )
321 RegQueryValueEx(hkey, "Left", NULL, &dwType, (BYTE*)&rect.x, &dwSize);
322 RegQueryValueEx(hkey, "Top", NULL, &dwType, (BYTE*)&rect.y, &dwSize);
323 RegQueryValueEx(hkey, "Width", NULL, &dwType, (BYTE*)&rect.width, &dwSize);
324 RegQueryValueEx(hkey, "Height", NULL, &dwType, (BYTE*)&rect.height, &dwSize);
336 RegCloseKey(hkey);
348 HKEY hkey; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
utils.py 184 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]
    [all...]
  /external/clang/lib/Driver/
MSVCToolChain.cpp 90 static bool readFullStringValue(HKEY hkey, const char *valueName,
101 result = RegQueryValueEx(hkey, valueName, NULL, &type, NULL, &valueSize);
105 result = RegQueryValueEx(hkey, valueName, NULL, NULL, &buffer[0], &valueSize);
125 HKEY hRootKey = HKEY_LOCAL_MACHINE;
126 HKEY hKey = NULL;
148 HKEY hTopKey = NULL;
176 KEY_READ | KEY_WOW64_32KEY, &hKey);
178 lResult = readFullStringValue(hKey, valueName, value)
    [all...]
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/platform/3.4.0/
platform-3.4.0.jar 

Completed in 2192 milliseconds