HomeSort by relevance Sort by last modified time
    Searched refs:old_part (Results 1 - 16 of 16) 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
97 if (!old_part.path.empty() &&
115 old_part,
125 TEST_AND_RETURN_FALSE(payload.AddPartition(old_part, new_part, aops));
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,
delta_diff_utils.cc 170 const PartitionConfig& old_part,
181 old_part.path,
183 old_part.size / kBlockSize,
192 if (old_part.fs_interface) {
194 old_part.fs_interface->GetFiles(&old_files);
238 old_part.path,
256 if (old_part.fs_interface) {
257 old_unvisited.push_back(ExtentForRange(0, old_part.size / kBlockSize));
268 old_part.path,
281 const string& old_part,
    [all...]
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 204 for (const auto& old_part : old_image.partitions) {
206 CHECK(diff_utils::InitializePartitionInfo(old_part, &part_info));
208 part.name = old_part.name;
211 part.source_path = old_part.path;
212 // Apply the delta in-place to the old_part.
213 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,
  /external/chromium-trace/catapult/dashboard/dashboard/
migrate_test_names.py 198 for old_part, new_part in map(None, old_path_parts, new_pattern_parts):
203 if not old_part:
206 new_path_parts.append(old_part)
212 modified_old_part = _RemoveBracketedSubstring(old_part, new_part)
223 def _RemoveBracketedSubstring(old_part, new_part):
232 old_part: A part of a test path.
234 inside the brackets is a substring of |old_part|.
237 The |old_part| string with the substring removed.
243 if substring_to_remove not in old_part:
244 raise BadInputPatternError('Bracketed part not in %s.' % old_part)
    [all...]
  /system/update_engine/payload_consumer/
delta_performer_unittest.cc 147 PartitionConfig old_part(kLegacyPartitionNameRoot);
151 old_part.path = "/dev/null";
152 old_part.size = 0;
158 payload.AddPartition(old_part, new_part, aops);
161 old_part.name = kLegacyPartitionNameKernel;
164 payload.AddPartition(old_part, new_part, {});
    [all...]

Completed in 1192 milliseconds