Searched refs:install_plan_ (Results 1 - 15 of 15) sorted by relevance

/system/update_engine/
H A Domaha_response_handler_action.cc71 install_plan_.download_url = current_url;
72 install_plan_.version = response.version;
80 LOG(INFO) << "Replacing URL " << install_plan_.download_url
83 install_plan_.download_url = payload_state->GetP2PUrl();
88 install_plan_.payload_size = response.size;
89 install_plan_.payload_hash = response.hash;
90 install_plan_.metadata_size = response.metadata_size;
91 install_plan_.metadata_signature = response.metadata_signature;
92 install_plan_.public_key_rsa = response.public_key_rsa;
93 install_plan_
[all...]
H A Dupdate_attempter_android.cc134 install_plan_ = InstallPlan();
136 install_plan_.download_url = payload_url;
137 install_plan_.version = "";
139 install_plan_.payload_size = payload_size;
140 if (!install_plan_.payload_size) {
142 &install_plan_.payload_size)) {
143 install_plan_.payload_size = 0;
146 install_plan_.payload_hash = headers[kPayloadPropertyFileHash];
148 &install_plan_.metadata_size)) {
149 install_plan_
[all...]
H A Domaha_response_handler_action.h58 const InstallPlan& install_plan() const { return install_plan_; }
74 InstallPlan install_plan_; member in class:chromeos_update_engine::OmahaResponseHandlerAction
H A Dupdate_attempter_android.h115 // |install_plan_|.
151 InstallPlan install_plan_; member in class:chromeos_update_engine::UpdateAttempterAndroid
H A Dupdate_attempter_unittest.cc584 response_action->install_plan_.is_resume = true;
/system/update_engine/payload_consumer/
H A Dfilesystem_verifier_action.cc58 install_plan_ = GetInputObject();
62 if (install_plan_.payload_type == InstallPayloadType::kDelta &&
63 install_plan_.partitions.empty() &&
73 part.name, install_plan_.source_slot, &part_path))
81 install_plan_.partitions.push_back(part);
85 part.name, install_plan_.source_slot, &part_path))
93 install_plan_.partitions.push_back(part);
96 if (install_plan_.partitions.empty()) {
99 SetOutputObject(install_plan_);
125 SetOutputObject(install_plan_);
[all...]
H A Ddownload_action.cc86 if (!p2p_manager->FileShare(p2p_file_id_, install_plan_.payload_size)) {
173 install_plan_ = GetInputObject();
176 install_plan_.Dump();
179 if (!boot_control_->MarkSlotUnbootable(install_plan_.target_slot)) {
181 << BootControlInterface::SlotName(install_plan_.target_slot)
189 prefs_, boot_control_, hardware_, delegate_, &install_plan_));
196 string file_id = utils::CalculateP2PFileId(install_plan_.payload_hash,
197 install_plan_.payload_size);
223 payload_state->GetP2PUrl() == install_plan_.download_url) {
232 http_fetcher_->BeginTransfer(install_plan_
[all...]
H A Dpostinstall_runner_action.cc56 install_plan_ = GetInputObject();
58 if (install_plan_.powerwash_required) {
67 partition_weight_.resize(install_plan_.partitions.size());
69 for (size_t i = 0; i < install_plan_.partitions.size(); ++i) {
73 partition_weight_[i] = install_plan_.partitions[i].run_postinstall;
83 if (install_plan_.download_url.empty()) {
89 while (current_partition_ < install_plan_.partitions.size() &&
90 !install_plan_.partitions[current_partition_].run_postinstall) {
92 << install_plan_.partitions[current_partition_].name;
95 if (current_partition_ == install_plan_
[all...]
H A Dinstall_plan.h132 install_plan_(install_plan) {}
136 SetOutputObject(install_plan_); variable
141 InstallPlan* install_plan() { return &install_plan_; }
150 InstallPlan install_plan_; member in class:chromeos_update_engine::InstallPlanAction
H A Ddelta_performer_unittest.cc100 install_plan_.source_slot = 0;
101 install_plan_.target_slot = 1;
111 install_plan_.payload_type = payload_type;
171 &install_plan_.metadata_size));
206 kLegacyPartitionNameRoot, install_plan_.target_slot, new_part);
208 kLegacyPartitionNameRoot, install_plan_.source_slot, source_path);
210 kLegacyPartitionNameKernel, install_plan_.target_slot, "/dev/null");
212 kLegacyPartitionNameKernel, install_plan_.source_slot, "/dev/null");
231 install_plan_.hash_checks_mandatory = hash_checks_mandatory;
238 install_plan_
331 InstallPlan install_plan_; member in class:chromeos_update_engine::DeltaPerformerTest
[all...]
H A Ddelta_performer.cc155 size_t payload_size = install_plan_->payload_size;
190 size_t payload_size = install_plan_->payload_size;
298 if (install_plan_->payload_type == InstallPayloadType::kDelta &&
300 source_path_ = install_plan_->partitions[current_partition_].source_path;
306 << BootControlInterface::SlotName(install_plan_->source_slot)
312 target_path_ = install_plan_->partitions[current_partition_].target_path;
318 << BootControlInterface::SlotName(install_plan_->target_slot)
381 return install_plan_->payload_type == InstallPayloadType::kDelta
470 if (install_plan_->hash_checks_mandatory) {
471 if (install_plan_
[all...]
H A Dfilesystem_verifier_action.h101 // The index in the install_plan_.partitions vector of the partition currently
115 InstallPlan install_plan_; member in class:chromeos_update_engine::FilesystemVerifierAction
H A Dpostinstall_runner_action.h102 InstallPlan install_plan_; member in class:chromeos_update_engine::PostinstallRunnerAction
H A Ddownload_action.h137 InstallPlan install_plan_; member in class:chromeos_update_engine::DownloadAction
H A Ddelta_performer.h86 install_plan_(install_plan) {}
306 InstallPlan* install_plan_; member in class:chromeos_update_engine::DeltaPerformer

Completed in 98 milliseconds