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

  /system/update_engine/payload_generator/
full_update_generator.h 42 const PartitionConfig& old_part,
operations_generator.h 35 // |old_part| to |new_part| and stores the generated operations in |aops|.
45 const PartitionConfig& old_part,
delta_diff_utils.h 36 // It uses the files reported by the filesystem in |old_part| and the data
45 const PartitionConfig& old_part,
54 // are stored in the |old_part| and |new_part| files and have |old_num_blocks|
63 const std::string& old_part,
77 // exists, the old version exists in |old_part| in the blocks described by
81 const std::string& old_part,
90 // Reads the blocks |old_extents| from |old_part| (if it exists) and the
98 bool ReadExtentsToDiff(const std::string& old_part,
delta_diff_generator.cc 86 const PartitionConfig& old_part = local
95 if (!old_part.path.empty()) {
112 old_part,
122 TEST_AND_RETURN_FALSE(payload.AddPartition(old_part, new_part, aops));
delta_diff_utils.cc 181 FileDeltaProcessor(const string& old_part,
189 : old_part_(old_part),
252 const PartitionConfig& old_part,
263 old_part.path,
265 old_part.size / kBlockSize,
274 if (old_part.fs_interface) {
276 old_part.fs_interface->GetFiles(&old_files);
321 file_delta_processors.emplace_back(old_part.path,
353 if (old_part.fs_interface) {
354 old_unvisited.push_back(ExtentForRange(0, old_part.size / kBlockSize))
    [all...]
ab_generator.h 53 const PartitionConfig& old_part,
block_mapping.h 96 // Maps the blocks of the old and new partitions |old_part| and |new_part| whose
102 bool MapPartitionBlocks(const std::string& old_part,
block_mapping.cc 139 bool MapPartitionBlocks(const string& old_part,
149 int old_fd = HANDLE_EINTR(open(old_part.c_str(), O_RDONLY));
inplace_generator.h 215 const PartitionConfig& old_part,
232 const PartitionConfig& old_part,
ab_generator.cc 39 const PartitionConfig& old_part,
43 TEST_AND_RETURN_FALSE(old_part.name == new_part.name);
51 old_part,
75 TEST_AND_RETURN_FALSE(AddSourceHash(aops, old_part.path));
generate_delta_main.cc 202 for (const auto& old_part : old_image.partitions) {
204 CHECK(diff_utils::InitializePartitionInfo(old_part, &part_info));
206 part.name = old_part.name;
209 part.source_path = old_part.path;
210 // Apply the delta in-place to the old_part.
211 part.target_path = old_part.path;
full_update_generator.cc 118 const PartitionConfig& old_part,
inplace_generator.cc 572 "", // old_part
737 const PartitionConfig& old_part,
746 vector<Block> blocks(std::max(old_part.size, new_part.size) / block_size);
790 const PartitionConfig& old_part,
794 TEST_AND_RETURN_FALSE(old_part.name == new_part.name);
807 old_part,
816 old_part, new_part, partition_size, config.block_size, blob_file, aops));
inplace_generator_unittest.cc 706 PartitionConfig old_part("part");
707 old_part.path = "/dev/zero";
708 old_part.size = old_blocks * block_size;
717 old_part,
  /system/update_engine/payload_consumer/
delta_performer_unittest.cc 142 PartitionConfig old_part(kLegacyPartitionNameRoot);
146 old_part.path = "/dev/null";
147 old_part.size = 0;
153 payload.AddPartition(old_part, new_part, aops);
156 old_part.name = kLegacyPartitionNameKernel;
159 payload.AddPartition(old_part, new_part, {});
    [all...]

Completed in 149 milliseconds