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

1 2 3

  /external/chromium/base/win/
registry.h 28 RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access);
31 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access);
33 LONG CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
36 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
89 HKEY Handle() const { return key_; }
92 HKEY key_; // The registry key being iterated.
104 RegistryValueIterator(HKEY root_key, const wchar_t* folder_key);
128 HKEY key_;
144 RegistryKeyIterator(HKEY root_key, const wchar_t* folder_key);
165 HKEY key_
    [all...]
win_util.h 70 BASE_API bool AddCommandToAutoRun(HKEY root_key, const string16& name,
74 BASE_API bool RemoveCommandFromAutoRun(HKEY root_key, const string16& name);
78 BASE_API bool ReadCommandFromAutoRun(HKEY root_key,
registry.cc 24 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access)
42 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
47 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
59 LONG RegKey::Open(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
72 HKEY subkey = NULL;
85 HKEY subkey = NULL;
279 RegistryValueIterator::RegistryValueIterator(HKEY root_key,
347 RegistryKeyIterator::RegistryKeyIterator(HKEY root_key,
win_util.cc 128 bool AddCommandToAutoRun(HKEY root_key, const string16& name,
135 bool RemoveCommandFromAutoRun(HKEY root_key, const string16& name) {
140 bool ReadCommandFromAutoRun(HKEY root_key,
  /external/icu4c/common/
wintz.c 96 HKEY hkey; local
108 &hkey);
109 RegCloseKey(hkey);
119 static LONG openTZRegKey(HKEY *hkey, const char *winid)
146 hkey);
154 HKEY hkey; local
156 result = openTZRegKey(&hkey, winid)
    [all...]
  /external/webkit/Source/WebCore/platform/win/
SSLKeyGeneratorWin.cpp 43 HCRYPTKEY hKey = 0;
54 if (!CryptGenKey(hContext, AT_KEYEXCHANGE, 0, &hKey) || !CryptExportPublicKeyInfo(hContext, AT_KEYEXCHANGE, X509_ASN_ENCODING, 0, &dwPubInfoLength))
90 if (hKey)
91 CryptDestroyKey(hKey);
  /external/wpa_supplicant_6/wpa_supplicant/
config_winreg.c 56 static int wpa_config_read_blobs(struct wpa_config *config, HKEY hk)
60 HKEY bhk;
126 static int wpa_config_read_reg_dword(HKEY hk, const TCHAR *name, int *_val)
143 static char * wpa_config_read_reg_string(HKEY hk, const TCHAR *name)
170 static int wpa_config_read_global_uuid(struct wpa_config *config, HKEY hk)
189 HKEY hk)
208 static int wpa_config_read_global(struct wpa_config *config, HKEY hk)
262 static struct wpa_ssid * wpa_config_read_network(HKEY hk, const TCHAR *netw,
265 HKEY nhk;
359 static int wpa_config_read_networks(struct wpa_config *config, HKEY hk
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_winreg.c 50 static int wpa_config_read_blobs(struct wpa_config *config, HKEY hk)
54 HKEY bhk;
120 static int wpa_config_read_reg_dword(HKEY hk, const TCHAR *name, int *_val)
137 static char * wpa_config_read_reg_string(HKEY hk, const TCHAR *name)
164 static int wpa_config_read_global_uuid(struct wpa_config *config, HKEY hk)
183 HKEY hk)
202 static int wpa_config_read_global(struct wpa_config *config, HKEY hk)
278 static struct wpa_ssid * wpa_config_read_network(HKEY hk, const TCHAR *netw,
281 HKEY nhk;
373 static int wpa_config_read_networks(struct wpa_config *config, HKEY hk
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/joystick/win32/
SDL_mmjoystick.c 79 HKEY hTopKey;
80 HKEY hKey;
90 regresult = RegOpenKeyExA(hTopKey, regkey, 0, KEY_READ, &hKey);
93 regresult = RegOpenKeyExA(hTopKey, regkey, 0, KEY_READ, &hKey);
102 regresult = RegQueryValueExA(hKey, regvalue, 0, 0, (LPBYTE)regname, &regsize);
103 RegCloseKey(hKey);
111 regresult = RegOpenKeyExA(hTopKey, regkey, 0, KEY_READ, &hKey);
118 regresult = RegQueryValueExA(hKey, REGSTR_VAL_JOYOEMNAME, 0, 0, NULL, &regsize);
124 regresult = RegQueryValueExA(hKey,
    [all...]
  /external/clang/lib/Driver/
WindowsToolChain.cpp 112 HKEY hRootKey = NULL;
113 HKEY hKey = NULL;
155 HKEY hTopKey = NULL;
189 lResult = RegOpenKeyEx(hTopKey, bestName, 0, KEY_READ, &hKey);
191 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
195 RegCloseKey(hKey);
201 lResult = RegOpenKeyEx(hRootKey, subKey, 0, KEY_READ, &hKey);
203 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
207 RegCloseKey(hKey);
    [all...]
  /external/webkit/Source/WebCore/plugins/win/
PluginDatabaseWin.cpp 43 DWORD SHGetValue(HKEY hkey, LPCWSTR pszSubKey, LPCWSTR pszValue, LPDWORD pdwType, LPVOID pvData, LPDWORD pcbData)
45 HKEY key;
46 if (RegOpenKeyEx(hkey, pszSubKey, 0, 0, &key) == ERROR_SUCCESS) {
82 static inline void addPluginPathsFromRegistry(HKEY rootKey, HashSet<String>& paths)
84 HKEY key;
210 HKEY key;
227 HKEY extensionsKey;
288 HKEY key;
333 HKEY key
    [all...]
  /external/openssl/crypto/modes/asm/
ghash-x86.pl 825 ($Xi,$Xhi)=("xmm0","xmm1"); $Hkey="xmm2";
832 my ($Xhi,$Xi,$Hkey)=@_;
836 &pshufd ($T2,$Hkey,0b01001110);
838 &pxor ($T2,$Hkey);
840 &pclmulqdq ($Xi,$Hkey,0x00); #######
841 &pclmulqdq ($Xhi,$Hkey,0x11); #######
859 my ($Xhi,$Xi,$Hkey)=@_;
863 &pclmulqdq ($Xi,$Hkey,0x00); #######
864 &pclmulqdq ($Xhi,$Hkey,0x11); #######
866 &pshufd ($T3,$Hkey,0b01001110)
    [all...]
ghash-x86_64.pl 353 ($Xi,$Xhi)=("%xmm0","%xmm1"); $Hkey="%xmm2";
357 my ($Xhi,$Xi,$Hkey,$modulo)=@_;
362 pshufd \$0b01001110,$Hkey,$T2
364 pxor $Hkey,$T2
367 pclmulqdq \$0x00,$Hkey,$Xi #######
368 pclmulqdq \$0x11,$Hkey,$Xhi #######
418 movdqu ($Xip),$Hkey
419 pshufd \$0b01001110,$Hkey,$Hkey # dword swap
422 pshufd \$0b11111111,$Hkey,$T2 # broadcast uppermost dwor
    [all...]
  /external/bluetooth/glib/gio/
gwin32appinfo.c 110 HKEY app_key;
261 HKEY class_key;
394 enumerate_open_with_list (HKEY dir_key,
449 enumerate_open_with_progids (HKEY dir_key,
474 enumerate_open_with_root (HKEY dir_key,
478 HKEY reg_key = NULL;
513 HKEY reg_key, sys_file_assoc_key, reg_key2;
631 HKEY reg_key;
  /external/chromium/base/debug/
debugger_win.cc 20 bool RegReadString(HKEY root, const wchar_t* subkey,
22 HKEY key = NULL;
  /external/chromium/chrome/browser/policy/
configuration_policy_provider_win_unittest.cc 143 void WriteString(HKEY hive, const char* name, const wchar_t* value);
145 void WriteDWORD(HKEY hive, const char* name, DWORD value);
148 void WriteValue(HKEY hive, const char* name, const Value* value);
150 void WriteInvalidValue(HKEY hive, const char* name, const Value* value);
230 void ConfigurationPolicyProviderWinTest::WriteString(HKEY hive,
237 void ConfigurationPolicyProviderWinTest::WriteDWORD(HKEY hive,
244 void ConfigurationPolicyProviderWinTest::WriteValue(HKEY hive,
289 void ConfigurationPolicyProviderWinTest::WriteInvalidValue(HKEY hive,
  /external/webkit/Tools/WebKitLauncherWin/
WebKitLauncherWin.cpp 31 static LPTSTR getStringValue(HKEY key, LPCTSTR valueName)
49 HKEY applePathKey = 0;
  /external/openssl/crypto/hmac/
hm_pmeth.c 130 ASN1_OCTET_STRING *hkey = NULL; local
134 hkey = ASN1_OCTET_STRING_dup(&hctx->ktmp);
135 if (!hkey)
137 EVP_PKEY_assign(pkey, EVP_PKEY_HMAC, hkey);
  /external/webkit/Source/WebKit2/UIProcess/Plugins/win/
PluginInfoStoreWin.cpp 102 HKEY key;
119 HKEY extensionsKey;
177 HKEY key;
281 static void addPluginPathsFromRegistry(HKEY rootKey, Vector<String>& paths)
283 HKEY key;
  /external/dbus/dbus/
dbus-sysdeps-wince-glue.c 65 HKEY root_key;
66 HKEY key_handle;
140 HKEY root_key, key_handle;
863 RegOpenKeyExA (HKEY hKey, LPCSTR lpSubKey, DWORD ulOptions,
879 result = RegOpenKeyEx (hKey, subkey, ulOptions, samDesired, phkResult);
889 RegQueryValueExA (HKEY hKey, LPCSTR lpValueName, LPDWORD lpReserved,
908 err = RegQueryValueExW (hKey, name, lpReserved, lpType, NULL, &data_len);
922 err = RegQueryValueExW (hKey, name, lpReserved, &type, data, &data_len)
    [all...]
  /sdk/find_java/
find_java_lib.cpp 154 HKEY key;
156 HKEY_LOCAL_MACHINE, // hKey
169 key, // hKey
231 HKEY javaHomeKey;
233 HKEY_LOCAL_MACHINE, // hKey
246 javaHomeKey, // hKey
  /external/chromium/chrome/browser/importer/
firefox_importer_utils_win.cc 18 static const HKEY kFireFoxRegistryPaths[] = {
  /external/chromium/net/proxy/
proxy_config_service_win.h 61 bool AddKeyToWatchList(HKEY rootkey, const wchar_t* subkey);
proxy_config_service_win.cc 56 bool CreateRegKey(HKEY rootkey, const wchar_t* subkey) {
124 bool ProxyConfigServiceWin::AddKeyToWatchList(HKEY rootkey,
  /hardware/ti/omap4xxx/security/tf_sdk/include/
pkcs11.h 435 CK_OBJECT_HANDLE hKey);
459 CK_OBJECT_HANDLE hKey);
504 CK_OBJECT_HANDLE hKey);
526 CK_OBJECT_HANDLE hKey);

Completed in 4977 milliseconds

1 2 3