OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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_generator.cc
86
const PartitionConfig&
old_part
=
local
97
if (!
old_part
.path.empty() &&
101
LOG_IF(WARNING,
old_part
.size != new_part.size)
106
LOG_IF(FATAL,
old_part
.size > new_part.size)
124
old_part
,
134
TEST_AND_RETURN_FALSE(payload.AddPartition(
old_part
, new_part, aops));
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
,
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
.fs_interface ?
old_part
.fs_interface->GetBlockCount() : 0,
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
[
all
...]
block_mapping.cc
139
bool MapPartitionBlocks(const string&
old_part
,
149
int old_fd = HANDLE_EINTR(open(
old_part
.c_str(), O_RDONLY));
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.h
231
const PartitionConfig&
old_part
,
inplace_generator.cc
572
"", //
old_part
793
const PartitionConfig&
old_part
,
797
TEST_AND_RETURN_FALSE(
old_part
.name == new_part.name);
810
old_part
,
/external/chromium-trace/catapult/dashboard/dashboard/
migrate_test_names.py
200
for
old_part
, new_part in map(None, old_path_parts, new_pattern_parts):
205
if not
old_part
:
208
new_path_parts.append(
old_part
)
214
modified_old_part = _RemoveBracketedSubstring(
old_part
, new_part)
225
def _RemoveBracketedSubstring(
old_part
, new_part):
234
old_part
: A part of a test path.
236
inside the brackets is a substring of |
old_part
|.
239
The |
old_part
| string with the substring removed.
245
if substring_to_remove not in
old_part
:
246
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 520 milliseconds