Home
last modified time | relevance | path

Searched refs:root_key (Results 1 – 7 of 7) sorted by relevance

/external/chromium/base/win/
Dwin_util.cc128 bool AddCommandToAutoRun(HKEY root_key, const string16& name, in AddCommandToAutoRun() argument
130 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_SET_VALUE); in AddCommandToAutoRun()
135 bool RemoveCommandFromAutoRun(HKEY root_key, const string16& name) { in RemoveCommandFromAutoRun() argument
136 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_SET_VALUE); in RemoveCommandFromAutoRun()
140 bool ReadCommandFromAutoRun(HKEY root_key, in ReadCommandFromAutoRun() argument
143 base::win::RegKey autorun_key(root_key, kAutoRunKeyPath, KEY_QUERY_VALUE); in ReadCommandFromAutoRun()
Dwin_util.h70 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,
Dregistry.h104 RegistryValueIterator(HKEY root_key, const wchar_t* folder_key);
144 RegistryKeyIterator(HKEY root_key, const wchar_t* folder_key);
Dregistry.cc279 RegistryValueIterator::RegistryValueIterator(HKEY root_key, in RegistryValueIterator() argument
283 LONG result = RegOpenKeyEx(root_key, folder_key, 0, KEY_READ, &key_); in RegistryValueIterator()
347 RegistryKeyIterator::RegistryKeyIterator(HKEY root_key, in RegistryKeyIterator() argument
350 LONG result = RegOpenKeyEx(root_key, folder_key, 0, KEY_READ, &key_); in RegistryKeyIterator()
/external/dbus/dbus/
Ddbus-sysdeps-wince-glue.c65 HKEY root_key; in get_verbose_setting() local
74 root_key = HKEY_LOCAL_MACHINE; in get_verbose_setting()
75 if (RegOpenKeyExW (root_key, dir, 0, KEY_READ, &key_handle)) in get_verbose_setting()
140 HKEY root_key, key_handle; in read_w32_registry_string() local
145 root_key = HKEY_CURRENT_USER; in read_w32_registry_string()
147 root_key = HKEY_CLASSES_ROOT; in read_w32_registry_string()
149 root_key = HKEY_CURRENT_USER; in read_w32_registry_string()
151 root_key = HKEY_LOCAL_MACHINE; in read_w32_registry_string()
153 root_key = HKEY_USERS; in read_w32_registry_string()
157 if (RegOpenKeyExA (root_key, dir, 0, KEY_READ, &key_handle)) in read_w32_registry_string()
/external/chromium/net/base/
Ddnssec_chain_verifier.cc561 base::StringPiece root_key; in EnterRoot() local
562 if (!ReadAheadEntryKey(&root_key)) in EnterRoot()
566 if (root_key.size()) { in EnterRoot()
567 if (root_key.size() != sizeof(kRootKey) || in EnterRoot()
568 memcmp(root_key.data(), kRootKey, sizeof(kRootKey))) { in EnterRoot()
/external/chromium/chrome/browser/
Dshell_integration_win.cc346 HKEY root_key = HKEY_CLASSES_ROOT; in IsDefaultBrowser() local
349 base::win::RegKey key(root_key, key_path.c_str(), KEY_READ); in IsDefaultBrowser()