/external/chromium_org/chrome/installer/util/ |
conditional_work_item_list.h | 40 : key_path_(key_path) {} 44 base::FilePath key_path_; member in class:ConditionRunIfFileExists
|
delete_reg_value_work_item.cc | 18 key_path_(key_path), 39 LONG result = key.Open(predefined_root_, key_path_.c_str(), 45 LOG(INFO) << "(delete value) Key: " << key_path_ << " or Value: " 86 LONG result = key.Open(predefined_root_, key_path_.c_str(), 98 VLOG(1) << "can not open " << key_path_ << " error: " << result;
|
set_reg_value_work_item.cc | 21 key_path_(key_path), 37 key_path_(key_path), 53 key_path_(key_path), 74 result = key.Open(predefined_root_, key_path_.c_str(), 77 VLOG(1) << "can not open " << key_path_ << " error: " << result; 108 VLOG(1) << "Failed to write value " << key_path_ << " error: " << result; 130 LONG result = key.Open(predefined_root_, key_path_.c_str(), KEY_SET_VALUE); 132 VLOG(1) << "rollback: can not open " << key_path_ << " error: " << result;
|
conditional_work_item_list.cc | 35 return base::PathExists(key_path_);
|
delete_reg_value_work_item.h | 49 std::wstring key_path_; member in class:DeleteRegValueWorkItem
|
set_reg_value_work_item.h | 64 std::wstring key_path_; member in class:SetRegValueWorkItem
|
shell_util.cc | 526 items->AddCreateRegKeyWorkItem(root, key_path_); 528 items->AddSetRegValueWorkItem(root, key_path_, name_, value_, true); 530 items->AddSetRegValueWorkItem(root, key_path_, name_, int_value_, true); 534 // Checks if the current registry entry exists in HKCU\|key_path_|\|name_| 570 : key_path_(key_path), name_(), 577 : key_path_(key_path), name_(name), 584 : key_path_(key_path), name_(name), 588 string16 key_path_; // key path for the registry entry member in class:__anon6816::RegistryEntry 596 // |root|\|key_path_|\|name_|. 598 RegKey key(root, key_path_.c_str(), KEY_QUERY_VALUE) [all...] |