Home | History | Annotate | Download | only in payload_consumer

Lines Matching defs:partition

301              << " in partition \""
325 PLOG(ERROR) << "Error closing source partition";
334 PLOG(ERROR) << "Error closing target partition";
347 const PartitionUpdate& partition = partitions_[current_partition_];
350 const InstallPlan::Partition& install_part =
359 LOG(ERROR) << "Unable to open source partition "
360 << partition.partition_name() << " on slot "
374 LOG(INFO) << "Opening " << target_path_ << " partition with"
379 LOG(ERROR) << "Unable to open target partition "
380 << partition.partition_name() << " on slot "
386 LOG(INFO) << "Applying " << partition.operations().size()
387 << " operations to partition \"" << partition.partition_name()
390 // Discard the end of the partition, but ignore failures.
405 for (const PartitionUpdate& partition : partitions) {
406 if (partition.has_old_partition_info()) {
407 LogPartitionInfoHash(partition.old_partition_info(),
408 "old " + partition.partition_name());
410 LogPartitionInfoHash(partition.new_partition_info(),
411 "new " + partition.partition_name());
576 for (const auto& partition : partitions_) {
577 num_total_operations_ += partition.operations_size();
750 for (const PartitionUpdate& partition : manifest_.partitions()) {
751 partitions_.push_back(partition);
796 for (const auto& partition : partitions_) {
797 InstallPlan::Partition install_part;
798 install_part.name = partition.partition_name();
800 partition.has_run_postinstall() && partition.run_postinstall();
803 (partition.has_postinstall_path() ? partition.postinstall_path()
805 install_part.filesystem_type = partition.filesystem_type();
806 install_part.postinstall_optional = partition.postinstall_optional();
809 if (partition.has_old_partition_info()) {
810 const PartitionInfo& info = partition.old_partition_info();
815 if (!partition.has_new_partition_info()) {
816 LOG(ERROR) << "Unable to get new partition hash info on partition "
821 const PartitionInfo& info = partition.new_partition_info();
829 LOG(ERROR) << "Unable to determine all the partition devices.";
993 << "that the source partition was modified after it was "
1012 // Log remount history if this device is an ext4 partition.
1395 for (const PartitionUpdate& partition : manifest_.partitions()) {
1396 has_old_fields = has_old_fields || partition.has_old_partition_info();
1399 // The presence of an old partition hash is the sole indicator for a delta
1460 // partition boundaries etc (see chromium-os:37661).