HomeSort by relevance Sort by last modified time
    Searched defs:root_key (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/chrome/installer/util/
registry_test_data.h 29 bool Initialize(HKEY root_key, const wchar_t* base_path);
36 void ExpectMatchesNonEmptyKey(HKEY root_key, const wchar_t* path);
38 HKEY root_key() const { return root_key_; } function in class:RegistryTestData
45 static void ExpectEmptyKey(HKEY root_key, const wchar_t* path);
48 static bool DeleteKey(HKEY root_key, const wchar_t* path);
google_update_util.cc 44 const HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local
47 if (update_key.Open(root_key, kRegPathGoogleUpdate, KEY_QUERY_VALUE) ==
installation_state.cc 54 const HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local
61 if (key.Open(root_key, version_key.c_str(), kAccess) == ERROR_SUCCESS) {
86 if (key.Open(root_key, state_key.c_str(), kAccess) == ERROR_SUCCESS) {
127 key.Open(root_key, distribution->GetStateMediumKey().c_str(), kAccess) ==
installer_state.h 134 HKEY root_key() const { return root_key_; } function in class:installer::InstallerState
google_update_settings.cc 151 HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local
154 RegKey key(root_key, dist->GetStateKey().c_str(),
281 HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local
286 root_key, reg_path.c_str(), KEY_SET_VALUE | KEY_WOW64_32KEY);
766 const HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local
770 if (update_key.Open(root_key, google_update::kRegPathGoogleUpdate,
779 const HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local
783 if (key.Open(root_key,
796 const HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local
799 if (update_key.Open(root_key,
814 const HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local
838 const HKEY root_key = system_install ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local
    [all...]
google_update_settings_unittest.cc 1014 HKEY root_key() const { function in class:StatsState
1088 const HKEY root_key = stats_state.root_key(); local
    [all...]
shell_util.cc 1018 HKEY root_key = DetermineRegistrationRoot(is_per_user_install); local
1121 const HKEY root_key = HKEY_CLASSES_ROOT; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_messaging_test_util.cc 45 HKEY root_key = user_level ? HKEY_CURRENT_USER : HKEY_LOCAL_MACHINE; local
49 root_key, key.c_str(),
77 HKEY root_key = user_level ? HKEY_CURRENT_USER : HKEY_LOCAL_MACHINE; local
78 registry_override_.OverrideRegistry(root_key);
  /external/chromium_org/chrome/installer/launcher_support/
chrome_launcher_support.cc 38 HKEY root_key = (level == USER_LEVEL_INSTALLATION) ? local
44 if (reg_key.Open(root_key, subkey.c_str(),
  /external/chromium_org/third_party/webrtc/base/
win32regkey.cc 890 std::wstring root_key; local
893 root_key = *full_key_name;
896 root_key = full_key_name->substr(0, index);
901 for (std::wstring::iterator iter = root_key.begin();
902 iter != root_key.end(); ++iter) {
906 if (!root_key.compare(L"HKLM") ||
907 !root_key.compare(L"HKEY_LOCAL_MACHINE")) {
909 } else if (!root_key.compare(L"HKCU") ||
910 !root_key.compare(L"HKEY_CURRENT_USER")) {
912 } else if (!root_key.compare(L"HKU") |
930 HKEY root_key = GetRootKeyInfo(&key); local
    [all...]
  /external/chromium_org/chrome/installer/mini_installer/
mini_installer.cc 132 bool ReadValueFromRegistry(HKEY root_key, const wchar_t *sub_key,
137 if (key.Open(root_key, sub_key, KEY_QUERY_VALUE) == ERROR_SUCCESS &&
145 bool OpenClientStateKey(HKEY root_key, const wchar_t* app_guid, REGSAM access,
150 (key->Open(root_key,
164 const HKEY root_key = local
187 if (OpenClientStateKey(root_key, app_guid, key_access, &key)) {
205 if (!OpenClientStateKey(root_key, app_guid, key_access, &key))
234 const HKEY root_key = system_level ? HKEY_LOCAL_MACHINE : HKEY_CURRENT_USER; local
236 return OpenClientStateKey(root_key, app_guid, KEY_QUERY_VALUE, &key) &&
    [all...]
  /external/chromium_org/chrome/installer/setup/
install_worker.cc 221 work_item_list->AddDeleteRegKeyWorkItem(installer_state.root_key(),
234 cmd.AddWorkItems(installer_state.root_key(), full_cmd_key, work_item_list);
245 installer_state.root_key(),
380 cmd.AddWorkItems(installer_state.root_key(), cmd_key, work_item_list);
437 HKEY reg_root = installer_state.root_key();
676 HKEY reg_root = installer_state.root_key();
870 const HKEY root_key = installer_state.root_key(); local
926 const HKEY root_key = installer_state.root_key(); local
988 const HKEY root_key = installer_state.root_key(); local
1039 HKEY root_key = installer_state.root_key(); local
1591 const HKEY root_key = installer_state.root_key(); local
1624 const HKEY root_key = installer_state.root_key(); local
    [all...]

Completed in 328 milliseconds