HomeSort by relevance Sort by last modified time
    Searched refs:install_plan_ (Results 1 - 15 of 15) sorted by null

  /system/update_engine/
omaha_response_handler_action.cc 77 install_plan_.download_url = current_url;
78 install_plan_.version = response.version;
79 install_plan_.system_version = response.system_version;
87 LOG(INFO) << "Replacing URL " << install_plan_.download_url
90 install_plan_.download_url = payload_state->GetP2PUrl();
104 install_plan_.payloads.push_back(
113 install_plan_.public_key_rsa = response.public_key_rsa;
114 install_plan_.hash_checks_mandatory = AreHashChecksMandatory(response);
115 install_plan_.is_resume = DeltaPerformer::CanResumeUpdate(
117 if (install_plan_.is_resume)
    [all...]
update_attempter_android.cc 166 install_plan_ = InstallPlan();
168 install_plan_.download_url = payload_url;
169 install_plan_.version = "";
190 install_plan_.payloads.push_back(payload);
193 install_plan_.public_key_rsa = "";
195 install_plan_.hash_checks_mandatory = hardware_->IsOfficialBuild();
196 install_plan_.is_resume = !payload_id.empty() &&
198 if (!install_plan_.is_resume) {
206 install_plan_.source_slot = boot_control_->GetCurrentSlot();
207 install_plan_.target_slot = install_plan_.source_slot == 0 ? 1 : 0
    [all...]
omaha_response_handler_action.h 58 const InstallPlan& install_plan() const { return install_plan_; }
74 InstallPlan install_plan_; member in class:chromeos_update_engine::OmahaResponseHandlerAction
update_attempter_android.h 188 InstallPlan install_plan_; member in class:chromeos_update_engine::UpdateAttempterAndroid
update_attempter_unittest.cc 642 response_action->install_plan_.is_resume = true;
    [all...]
  /system/update_engine/payload_consumer/
download_action.cc 176 install_plan_ = GetInputObject();
177 install_plan_.Dump();
182 for (const auto& payload : install_plan_.payloads)
185 if (install_plan_.is_resume) {
188 static_cast<size_t>(payload_index) < install_plan_.payloads.size()) {
193 install_plan_.payloads[i].already_applied = true;
198 payload_ = &install_plan_.payloads[0];
201 if (!boot_control_->MarkSlotUnbootable(install_plan_.target_slot)) {
203 << BootControlInterface::SlotName(install_plan_.target_slot)
213 if (install_plan_.is_resume &
    [all...]
postinstall_runner_action.cc 58 install_plan_ = GetInputObject();
60 if (install_plan_.powerwash_required) {
69 partition_weight_.resize(install_plan_.partitions.size());
71 for (size_t i = 0; i < install_plan_.partitions.size(); ++i) {
75 partition_weight_[i] = install_plan_.partitions[i].run_postinstall;
85 if (!install_plan_.run_post_install) {
90 if (install_plan_.download_url.empty()) {
96 while (current_partition_ < install_plan_.partitions.size() &&
97 !install_plan_.partitions[current_partition_].run_postinstall) {
99 << install_plan_.partitions[current_partition_].name
    [all...]
install_plan.h 153 install_plan_(install_plan) {}
157 SetOutputObject(install_plan_); variable
162 InstallPlan* install_plan() { return &install_plan_; }
171 InstallPlan install_plan_; member in class:chromeos_update_engine::InstallPlanAction
filesystem_verifier_action.cc 54 install_plan_ = GetInputObject();
56 if (install_plan_.partitions.empty()) {
59 SetOutputObject(install_plan_);
85 SetOutputObject(install_plan_);
90 if (partition_index_ == install_plan_.partitions.size()) {
95 install_plan_.partitions[partition_index_];
177 << install_plan_.partitions[partition_index_].name;
198 install_plan_.partitions[partition_index_];
filesystem_verifier_action.h 92 // The index in the install_plan_.partitions vector of the partition currently
106 InstallPlan install_plan_; member in class:chromeos_update_engine::FilesystemVerifierAction
delta_performer_unittest.cc 150 install_plan_.source_slot = 0;
151 install_plan_.target_slot = 1;
257 kLegacyPartitionNameRoot, install_plan_.target_slot, new_part);
259 kLegacyPartitionNameRoot, install_plan_.source_slot, source_path);
261 kLegacyPartitionNameKernel, install_plan_.target_slot, "/dev/null");
263 kLegacyPartitionNameKernel, install_plan_.source_slot, "/dev/null");
282 install_plan_.hash_checks_mandatory = hash_checks_mandatory;
318 install_plan_.hash_checks_mandatory = hash_checks_mandatory;
382 InstallPlan install_plan_; member in class:chromeos_update_engine::DeltaPerformerTest
391 &install_plan_,
    [all...]
postinstall_runner_action.h 99 InstallPlan install_plan_; member in class:chromeos_update_engine::PostinstallRunnerAction
download_action.h 142 InstallPlan install_plan_; member in class:chromeos_update_engine::DownloadAction
144 // Pointer to the current payload in install_plan_.payloads.
delta_performer.h 78 install_plan_(install_plan),
277 InstallPlan* install_plan_; member in class:chromeos_update_engine::DeltaPerformer
279 // Pointer to the current payload in install_plan_.payloads.
delta_performer.cc 349 install_plan_->partitions.size() - partitions_.size();
351 install_plan_->partitions[num_previous_partitions + current_partition_];
361 << BootControlInterface::SlotName(install_plan_->source_slot)
381 << BootControlInterface::SlotName(install_plan_->target_slot)
449 if (install_plan_->hash_checks_mandatory) {
494 if (install_plan_->hash_checks_mandatory) {
645 if (install_plan_->hash_checks_mandatory) {
825 install_plan_->partitions.push_back(install_part);
828 if (!install_plan_->LoadPartitionsFromSlots(boot_control_)) {
    [all...]

Completed in 410 milliseconds