Home | History | Annotate | Download | only in win

Lines Matching refs:subkey

24 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access)
30 Create(rootkey, subkey, access);
32 Open(rootkey, subkey, access);
34 DCHECK(!subkey);
42 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
44 return CreateWithDisposition(rootkey, subkey, &disposition_value, access);
47 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
50 DCHECK(rootkey && subkey && access && disposition);
53 LONG result = RegCreateKeyEx(rootkey, subkey, 0, NULL,
59 LONG RegKey::Open(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
61 DCHECK(rootkey && subkey && access);
64 LONG result = RegOpenKeyEx(rootkey, subkey, 0, access, &key_);
72 HKEY subkey = NULL;
74 access, NULL, &subkey, NULL);
77 key_ = subkey;
85 HKEY subkey = NULL;
86 LONG result = RegOpenKeyEx(key_, name, 0, access, &subkey);
90 key_ = subkey;