/external/chromium/net/base/ |
platform_mime_util_win.cc | 19 base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue( 31 if (base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(
|
/external/chromium/chrome/browser/importer/ |
firefox_importer_utils_win.cc | 34 LONG result = reg_key.ReadValue(L"CurrentVersion", ver_buffer, 50 LONG result = reg_key.ReadValue(L"CurrentVersion", buffer, 59 result = reg_key_directory.ReadValue(L"Install Directory", buffer,
|
ie_importer.cc | 339 key.ReadValue(reg_iterator.Name(), NULL, &value_len, NULL); 343 if (key.ReadValue(reg_iterator.Name(), 370 key.ReadValue(L"DefaultScope", &default_search_engine_name); 379 if ((sub_key.ReadValue(L"URL", &wide_url) != ERROR_SUCCESS) || 389 if ((sub_key.ReadValue(NULL, &name) != ERROR_SUCCESS) || name.empty()) { 391 if ((sub_key.ReadValue(L"DisplayName", &name) != ERROR_SUCCESS) || 448 if (key.ReadValue(kIEHomepage, &homepage_url) != ERROR_SUCCESS || 459 LONG result = keyDefault.ReadValue(kIEDefaultHomepage, &default_homepage_url); 519 if (reg_key.ReadValue(L"LinksFolderName", buffer, 604 LONG result = reg_key.ReadValue(L"Version", buffer, &buffer_length, NULL) [all...] |
/external/chromium/chrome/browser/extensions/ |
external_registry_extension_loader_win.cc | 54 if (key.ReadValue(kRegistryExtensionPath, &extension_path_str) 65 if (key.ReadValue(kRegistryExtensionVersion, &extension_version)
|
/external/chromium/base/win/ |
registry.h | 23 // ReadValue family of functions guarantee that the return arguments 63 LONG ReadValue(const wchar_t* name, void* data, DWORD* dsize, 65 LONG ReadValue(const wchar_t* name, std::wstring* value) const;
|
registry_unittest.cc | 72 ASSERT_EQ(ERROR_SUCCESS, key.ReadValue(kStringValueName, &string_value)); 79 // Make sure out args are not touched if ReadValue fails 81 ASSERT_NE(ERROR_SUCCESS, key.ReadValue(kNonExistent, &string_value));
|
registry.cc | 144 LONG RegKey::ReadValue(const wchar_t* name, void* data, DWORD* dsize, 152 LONG RegKey::ReadValue(const wchar_t* name, std::wstring* value) const { 156 // Use the one of the other forms of ReadValue if 1024 is too small for you. 159 LONG result = ReadValue(name, raw_value, &size, &type); 188 LONG result = ReadValue(name, &local_value, &size, &type); 205 LONG result = ReadValue(name, &local_value, &size, &type);
|
win_util.cc | 144 return (autorun_key.ReadValue(name.c_str(), command) == ERROR_SUCCESS);
|
/external/chromium/chrome/browser/policy/ |
configuration_policy_provider_delegate_win.cc | 22 if (key->ReadValue(name.c_str(), 0, &value_size, &key_type) != ERROR_SUCCESS) 33 key->ReadValue(name.c_str(), buffer.get(), &value_size, NULL);
|
/external/chromium/chrome/browser/ |
background_mode_manager_win.cc | 65 if ((read_key.ReadValue(key_name, ¤t_value) == ERROR_SUCCESS) &&
|
shell_integration_win.cc | 351 if (!key.Valid() || (key.ReadValue(L"", &value) != ERROR_SUCCESS)) 382 if (key.Valid() && (key.ReadValue(L"Progid", &app_cmd) == ERROR_SUCCESS) && 390 if (key.Valid() && (key.ReadValue(L"", &app_cmd) == ERROR_SUCCESS) &&
|
platform_util_win.cc | 144 key.ReadValue(NULL, NULL, &size, NULL);
|
enumerate_modules_model_win.cc | 483 if (clsid.ReadValue(L"", &dll) != ERROR_SUCCESS) { [all...] |
/external/chromium/chrome/browser/first_run/ |
upgrade_util_win.cc | 97 (key.ReadValue(google_update::kRegRenameCmdField,
|
/external/chromium/chrome/browser/autofill/ |
autofill_ie_toolbar_import_win.cc | 67 LONG result = key->ReadValue(value_name, NULL, &data_size, &data_type); 72 result = key->ReadValue(value_name, &(data[0]), &data_size, &data_type);
|
/external/chromium/chrome/browser/ui/views/ |
external_protocol_dialog.cc | 180 if (cmd_key.ReadValue(NULL, &application_to_launch) == ERROR_SUCCESS) {
|
shell_dialogs_win.cc | 78 if (reg_ext.ReadValue(NULL, ®_app) == ERROR_SUCCESS && !reg_app.empty()) { 80 if (reg_link.ReadValue(NULL, reg_description) == ERROR_SUCCESS) [all...] |
/external/tinyxml/ |
tinyxmlparser.cpp | 1081 p = ReadValue( p, data, encoding ); // Note this is an Element method, and will set the error if one happens. 1134 const char* TiXmlElement::ReadValue( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ) [all...] |
tinyxml.h | [all...] |