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