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

  /system/update_engine/payload_consumer/
payload_constants.cc 48 case InstallOperation::SOURCE_COPY:
49 return "SOURCE_COPY";
delta_performer_unittest.cc 526 aop.op.set_type(InstallOperation::SOURCE_COPY);
579 aop.op.set_type(InstallOperation::SOURCE_COPY);
    [all...]
delta_performer.cc 683 case InstallOperation::SOURCE_COPY:
685 OP_DURATION_HISTOGRAM("SOURCE_COPY", op_start_time);
    [all...]
  /system/update_engine/scripts/update_payload/
common.py 43 SOURCE_COPY = _CLASS.SOURCE_COPY
50 ALL = (REPLACE, REPLACE_BZ, MOVE, BSDIFF, SOURCE_COPY, SOURCE_BSDIFF, ZERO,
57 SOURCE_COPY: 'SOURCE_COPY',
update_metadata_pb2.py 43 name='SOURCE_COPY', index=4, number=4,
checker_unittest.py 38 'SOURCE_COPY': common.OpType.SOURCE_COPY,
795 op_type_name: 'REPLACE', 'REPLACE_BZ', 'MOVE', 'BSDIFF', 'SOURCE_COPY',
    [all...]
applier.py 327 """Applies a SOURCE_COPY operation.
520 elif op.type == common.OpType.SOURCE_COPY:
checker.py     [all...]
  /system/update_engine/payload_generator/
ab_generator.cc 94 if (aop.op.type() == InstallOperation::SOURCE_COPY) {
114 TEST_AND_RETURN_FALSE(original_op.type() == InstallOperation::SOURCE_COPY);
146 new_op.set_type(InstallOperation::SOURCE_COPY);
155 LOG(FATAL) << "Incorrectly split SOURCE_COPY operation. Did not use all "
225 bool is_delta_op = curr_aop.op.type() == InstallOperation::SOURCE_COPY;
ab_generator_unittest.cc 339 op.set_type(InstallOperation::SOURCE_COPY);
356 EXPECT_EQ(InstallOperation::SOURCE_COPY, first_op.type());
368 EXPECT_EQ(InstallOperation::SOURCE_COPY, second_op.type());
384 EXPECT_EQ(InstallOperation::SOURCE_COPY, third_op.type());
447 first_op.set_type(InstallOperation::SOURCE_COPY);
456 second_op.set_type(InstallOperation::SOURCE_COPY);
467 third_op.set_type(InstallOperation::SOURCE_COPY);
482 EXPECT_EQ(InstallOperation::SOURCE_COPY, first_result_op.type());
560 first_op.set_type(InstallOperation::SOURCE_COPY);
payload_generation_config.cc 160 // MOVE and BSDIFF were replaced by SOURCE_COPY and SOURCE_BSDIFF and
165 case InstallOperation::SOURCE_COPY:
delta_diff_utils.cc 501 // Produce MOVE/SOURCE_COPY operations for the moved blocks.
516 aop->op.set_type(version.OperationAllowed(InstallOperation::SOURCE_COPY)
517 ? InstallOperation::SOURCE_COPY
736 operation.set_type(version.OperationAllowed(InstallOperation::SOURCE_COPY)
737 ? InstallOperation::SOURCE_COPY
    [all...]
delta_diff_utils_unittest.cc 381 // Makes sure SOURCE_COPY operations are emitted whenever src_ops_allowed
409 EXPECT_EQ(InstallOperation::SOURCE_COPY, op.type());
561 // SOURCE_COPY operation chunked at 10 blocks.
574 EXPECT_EQ(InstallOperation::SOURCE_COPY, aop.op.type());
604 // There should be only one SOURCE_COPY, for the whole partition and the
610 EXPECT_EQ(InstallOperation::SOURCE_COPY, aop.op.type());
705 // There should be only one SOURCE_COPY, with a complicate list of extents.
708 EXPECT_EQ(InstallOperation::SOURCE_COPY, aop.op.type());

Completed in 777 milliseconds