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

1 2

  /external/libusb/msvc/
missing.c 38 HKEY hkey; local
50 rc = RegOpenKeyEx(HKEY_LOCAL_MACHINE, ENVIRONMENT_REG_PATH, 0, KEY_QUERY_VALUE, &hkey);
58 rc = RegQueryValueEx(hkey, wName, NULL, &dwType,
60 RegCloseKey(hkey);
  /external/icu/icu4c/source/common/
wintz.cpp 62 static LONG openTZRegKey(HKEY *hkey, const char *winid)
76 hkey);
84 HKEY hkey; local
86 result = openTZRegKey(&hkey, winid);
90 result = RegQueryValueExA(hkey,
96 RegCloseKey(hkey);
106 HKEY hkey; local
126 HKEY hkey; local
    [all...]
  /external/curl/lib/
hmac.c 57 unsigned char *hkey; local
77 hkey = (unsigned char *) ctxt->hmac_hashctxt2 + hashparams->hmac_ctxtsize;
78 (*hashparams->hmac_hfinal)(hkey, ctxt->hmac_hashctxt1);
79 key = hkey;
curl_ntlm_core.c 356 HCRYPTKEY hkey; local
383 if(!CryptImportKey(hprov, (BYTE *) &blob, sizeof(blob), 0, 0, &hkey)) {
392 CryptEncrypt(hkey, 0, FALSE, 0, out, &len, len);
394 CryptDestroyKey(hkey);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
regbag.h 50 HKEY hkey,
80 HKEY hkey,
100 #define ICreatePropBagOnRegKey_Create(This,hkey,subkey,ulOptions,samDesired,iid,ppBag) (This)->lpVtbl->Create(This,hkey,subkey,ulOptions,samDesired,iid,ppBag)
113 static FORCEINLINE HRESULT ICreatePropBagOnRegKey_Create(ICreatePropBagOnRegKey* This,HKEY hkey,LPCOLESTR subkey,DWORD ulOptions,DWORD samDesired,REFIID iid,LPVOID *ppBag) {
114 return This->lpVtbl->Create(This,hkey,subkey,ulOptions,samDesired,iid,ppBag);
123 HKEY hkey
    [all...]
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...]
  /external/python/cpython3/Lib/test/test_importlib/
test_windows.py 22 hkey = OpenKey(root, subkey, access=KEY_ALL_ACCESS)
28 subsubkey = EnumKey(hkey, 0)
32 delete_registry_tree(hkey, subsubkey)
33 CloseKey(hkey)
  /external/python/cpython3/PC/
winreg.c 19 static BOOL PyHKEY_AsHKEY(PyObject *ob, HKEY *pRes, BOOL bNoneOK);
21 static PyObject *PyHKEY_FromHKEY(HKEY h);
69 "HKEYType -- type object for HKEY objects\n"
82 "This object wraps a Windows HKEY object, automatically closing it when\n"
110 HKEY hkey; member in struct:__anon33583
144 if (obkey->hkey)
145 RegCloseKey((HKEY)obkey->hkey);
152 return ((PyHKEYObject *)ob)->hkey != 0
    [all...]
  /external/python/cpython2/PC/
_winreg.c 20 static BOOL PyHKEY_AsHKEY(PyObject *ob, HKEY *pRes, BOOL bNoneOK);
21 static PyObject *PyHKEY_FromHKEY(HKEY h);
67 "HKEYType -- type object for HKEY objects\n"
76 "CloseKey(hkey) - Closes a previously opened registry key.\n"
78 "The hkey argument specifies a previously opened key.\n"
81 "closed when the hkey object is destroyed by Python.");
336 "bool = QueryReflectionKey(hkey) - Determines the reflection state for the specified key.\n"
343 "This object wraps a Windows HKEY object, automatically closing it when\n"
388 HKEY hkey; member in struct:__anon32937
    [all...]
  /external/chromium-trace/catapult/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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_winreg.py 64 hkey = OpenKey(root, subkey, KEY_ALL_ACCESS)
70 subsubkey = EnumKey(hkey, 0)
74 self.delete_tree(hkey, subsubkey)
75 CloseKey(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:__anon13448
1061 hkey; local
1123 hkey; local
    [all...]
  /external/python/cpython2/Lib/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/python/cpython3/Lib/test/
test_winreg.py 60 hkey = OpenKey(root, subkey, 0, KEY_ALL_ACCESS)
66 subsubkey = EnumKey(hkey, 0)
70 self.delete_tree(hkey, subsubkey)
71 CloseKey(hkey)
  /external/v8/gypfiles/
vs_toolchain.py 97 with _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, subkey) as hkey:
98 return _winreg.QueryValueEx(hkey, value)[0]
  /external/wpa_supplicant_8/src/ap/
ieee802_11.c 2159 struct wpabuf *secret, *pub, *hkey; local
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
wpa.c 4244 struct wpabuf *secret, *pub, *hkey; local
    [all...]
  /external/clang/lib/Driver/
MSVCToolChain.cpp 96 static bool readFullStringValue(HKEY hkey, const char *valueName,
106 result = RegQueryValueExW(hkey, WideValueName.c_str(), NULL, &type, NULL,
111 result = RegQueryValueExW(hkey, WideValueName.c_str(), NULL, NULL, &buffer[0],
139 HKEY hRootKey = HKEY_LOCAL_MACHINE;
140 HKEY hKey = NULL;
162 HKEY hTopKey = NULL;
191 KEY_READ | KEY_WOW64_32KEY, &hKey);
193 lResult = readFullStringValue(hKey, valueName, value)
    [all...]
  /external/python/cpython2/PC/bdist_wininst/
install.c 148 HKEY hkey_root = (HKEY)-1;
1422 HKEY hkey; \/\/ Is this Python in HKCU or HKLM? member in struct:_InstalledVersionInfo
    [all...]
  /external/python/cpython3/PC/bdist_wininst/
install.c 148 HKEY hkey_root = (HKEY)-1;
1466 HKEY hkey; \/\/ Is this Python in HKCU or HKLM? member in struct:_InstalledVersionInfo
    [all...]

Completed in 692 milliseconds

1 2