Searched defs:rootkey (Results 1 - 2 of 2) sorted by relevance

/external/chromium/net/proxy/
H A Dproxy_config_service_win.cc56 bool CreateRegKey(HKEY rootkey, const wchar_t* subkey) { argument
57 return key_.Create(rootkey, subkey, KEY_NOTIFY) == ERROR_SUCCESS;
124 bool ProxyConfigServiceWin::AddKeyToWatchList(HKEY rootkey, argument
127 if (!entry->CreateRegKey(rootkey, subkey))
/external/chromium/base/win/
H A Dregistry.cc24 RegKey::RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access) argument
28 if (rootkey) {
30 Create(rootkey, subkey, access);
32 Open(rootkey, subkey, access);
42 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) { argument
44 return CreateWithDisposition(rootkey, subkey, &disposition_value, access);
47 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey, argument
50 DCHECK(rootkey && subkey && access && disposition);
53 LONG result = RegCreateKeyEx(rootkey, subkey, 0, NULL,
59 LONG RegKey::Open(HKEY rootkey, cons argument
[all...]

Completed in 287 milliseconds