Home
last modified time | relevance | path

Searched refs:op_type (Results 1 – 14 of 14) sorted by relevance

/system/update_engine/payload_consumer/
Dpayload_constants.cc45 const char* InstallOperationTypeName(InstallOperation::Type op_type) { in InstallOperationTypeName() argument
46 switch (op_type) { in InstallOperationTypeName()
Dpayload_constants.h80 const char* InstallOperationTypeName(InstallOperation::Type op_type);
/system/core/libpixelflinger/codeflinger/
DArm64Assembler.cpp577 int Rd, int Rn, uint32_t op_type, uint32_t size) in dataTransfer() argument
583 if(op_type == OPERAND_IMM) in dataTransfer()
613 else if(op_type == OPERAND_REG_OFFSET) in dataTransfer()
620 else if(op_type > OPERAND_UNSUPPORTED) in dataTransfer()
633 void ArmToArm64Assembler::ADDR_LDR(int cc, int Rd, int Rn, uint32_t op_type) in ADDR_LDR() argument
635 return dataTransfer(opLDR, cc, Rd, Rn, op_type, 64); in ADDR_LDR()
637 void ArmToArm64Assembler::ADDR_STR(int cc, int Rd, int Rn, uint32_t op_type) in ADDR_STR() argument
639 return dataTransfer(opSTR, cc, Rd, Rn, op_type, 64); in ADDR_STR()
641 void ArmToArm64Assembler::LDR(int cc, int Rd, int Rn, uint32_t op_type) in LDR() argument
643 return dataTransfer(opLDR, cc, Rd, Rn, op_type); in LDR()
[all …]
/system/update_engine/payload_generator/
Dfull_update_generator.cc102 InstallOperation::Type op_type; in ProcessChunk() local
104 buffer_in_, version_, &op_blob, &op_type)); in ProcessChunk()
106 aop_->op.set_type(op_type); in ProcessChunk()
Ddelta_diff_utils.h125 bool IsAReplaceOperation(InstallOperation::Type op_type);
128 bool IsNoSourceOperation(InstallOperation::Type op_type);
Dcycle_breaker.cc59 InstallOperation::Type op_type = graph[i].aop.op.type(); in BreakCycles() local
60 if (op_type == InstallOperation::REPLACE || in BreakCycles()
61 op_type == InstallOperation::REPLACE_BZ) { in BreakCycles()
Ddelta_diff_utils.cc866 InstallOperation::Type op_type; in ReadExtentsToDiff() local
868 GenerateBestFullOperation(new_data, version, &data_blob, &op_type)); in ReadExtentsToDiff()
869 operation.set_type(op_type); in ReadExtentsToDiff()
1013 bool IsAReplaceOperation(InstallOperation::Type op_type) { in IsAReplaceOperation() argument
1014 return (op_type == InstallOperation::REPLACE || in IsAReplaceOperation()
1015 op_type == InstallOperation::REPLACE_BZ || in IsAReplaceOperation()
1016 op_type == InstallOperation::REPLACE_XZ); in IsAReplaceOperation()
1019 bool IsNoSourceOperation(InstallOperation::Type op_type) { in IsNoSourceOperation() argument
1020 return (IsAReplaceOperation(op_type) || op_type == InstallOperation::ZERO || in IsNoSourceOperation()
1021 op_type == InstallOperation::DISCARD); in IsNoSourceOperation()
Dab_generator.cc279 InstallOperation::Type op_type; in AddDataAndSetType() local
281 diff_utils::GenerateBestFullOperation(data, version, &blob, &op_type)); in AddDataAndSetType()
285 if (aop->op.type() != op_type || aop->op.data_length() != blob.size()) { in AddDataAndSetType()
286 aop->op.set_type(op_type); in AddDataAndSetType()
/system/update_engine/scripts/update_payload/
Dchecker_unittest.py860 op_type = _OpTypeByName(op_type_name)
880 op.type = op_type
883 if op_type in (common.OpType.MOVE, common.OpType.BSDIFF,
896 if op_type in (common.OpType.REPLACE, common.OpType.REPLACE_BZ):
898 elif op_type in (common.OpType.MOVE, common.OpType.BSDIFF):
900 elif op_type in (common.OpType.SOURCE_COPY, common.OpType.SOURCE_BSDIFF):
902 if op_type == common.OpType.REPLACE_XZ:
904 elif op_type in (common.OpType.ZERO, common.OpType.DISCARD,
907 elif op_type == common.OpType.PUFFDIFF:
910 if op_type not in (common.OpType.MOVE, common.OpType.SOURCE_COPY):
[all …]
Dtest_utils.py194 def AddOperation(self, is_kernel, op_type, data_offset=None, argument
202 op.type = op_type
280 def AddOperationWithData(self, is_kernel, op_type, src_extents=None, argument
305 self.AddOperation(is_kernel, op_type, data_offset=data_offset,
/system/bt/stack/gap/
Dgap_ble.cc310 uint16_t op_type; in client_cmpl_cback() local
317 op_type = p_clcb->cl_op_uuid; in client_cmpl_cback()
321 status, op_type); in client_cmpl_cback()
331 switch (op_type) { in client_cmpl_cback()
/system/update_engine/scripts/
Dpayload_info_unittest.py53 def __init__(self, src_extents, dst_extents, op_type, **kwargs): argument
56 self.type = op_type
/system/bt/stack/include/
Dbtm_ble_api_types.h470 uint8_t op_type; member
/system/bt/stack/btm/
Dbtm_ble_adv_filter.cc206 btm_ble_adv_filt_cb.op_type = 0; in btm_flt_update_cb()