Home | History | Annotate | Download | only in win

Lines Matching refs:hKey

45 RegKey::RegKey(HKEY key)
51 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access)
70 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
75 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
78 HKEY subhkey = NULL;
102 HKEY subkey = NULL;
114 LONG RegKey::Open(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
116 HKEY subhkey = NULL;
139 HKEY subkey = NULL;
162 void RegKey::Set(HKEY key) {
169 HKEY RegKey::Take() {
172 HKEY key = key_;
201 HKEY subkey = NULL;
218 HKEY target_key = NULL;
411 LONG RegKey::RegDeleteKeyExWrapper(HKEY hKey,
415 typedef LSTATUS(WINAPI* RegDeleteKeyExPtr)(HKEY, LPCWSTR, REGSAM, DWORD);
422 return reg_delete_key_ex_func(hKey, lpSubKey, samDesired, Reserved);
425 return RegDeleteKey(hKey, lpSubKey);
429 LONG RegKey::RegDelRecurse(HKEY root_key,
437 HKEY target_key = NULL;
489 RegistryValueIterator::RegistryValueIterator(HKEY root_key,
578 RegistryKeyIterator::RegistryKeyIterator(HKEY root_key,