Home
last modified time | relevance | path

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

/system/update_engine/payload_consumer/
Dpayload_constants.cc38 const char* InstallOperationTypeName(InstallOperation_Type op_type) { in InstallOperationTypeName() argument
39 switch (op_type) { in InstallOperationTypeName()
Dpayload_constants.h69 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.cc105 InstallOperation_Type op_type; in ProcessChunk() local
107 buffer_in_, version_, &op_blob, &op_type)); in ProcessChunk()
109 aop_->op.set_type(op_type); in ProcessChunk()
Ddelta_diff_utils.h123 bool IsAReplaceOperation(InstallOperation_Type op_type);
126 bool IsNoSourceOperation(InstallOperation_Type op_type);
Ddelta_diff_utils.cc723 InstallOperation_Type op_type; in ReadExtentsToDiff() local
725 GenerateBestFullOperation(new_data, version, &data_blob, &op_type)); in ReadExtentsToDiff()
726 operation.set_type(op_type); in ReadExtentsToDiff()
867 bool IsAReplaceOperation(InstallOperation_Type op_type) { in IsAReplaceOperation() argument
868 return (op_type == InstallOperation::REPLACE || in IsAReplaceOperation()
869 op_type == InstallOperation::REPLACE_BZ || in IsAReplaceOperation()
870 op_type == InstallOperation::REPLACE_XZ); in IsAReplaceOperation()
873 bool IsNoSourceOperation(InstallOperation_Type op_type) { in IsNoSourceOperation() argument
874 return (IsAReplaceOperation(op_type) || in IsNoSourceOperation()
875 op_type == InstallOperation::ZERO || in IsNoSourceOperation()
[all …]
Dcycle_breaker.cc58 InstallOperation_Type op_type = graph[i].aop.op.type(); in BreakCycles() local
59 if (op_type == InstallOperation::REPLACE || in BreakCycles()
60 op_type == InstallOperation::REPLACE_BZ) { in BreakCycles()
Dab_generator.cc283 InstallOperation_Type op_type; in AddDataAndSetType() local
285 diff_utils::GenerateBestFullOperation(data, version, &blob, &op_type)); in AddDataAndSetType()
289 if (aop->op.type() != op_type || aop->op.data_length() != blob.size()) { in AddDataAndSetType()
290 aop->op.set_type(op_type); in AddDataAndSetType()
/system/update_engine/scripts/update_payload/
Dtest_utils.py182 def AddOperation(self, is_kernel, op_type, data_offset=None, argument
190 op.type = op_type
268 def AddOperationWithData(self, is_kernel, op_type, src_extents=None, argument
293 self.AddOperation(is_kernel, op_type, data_offset=data_offset,
Dchecker_unittest.py811 op_type = _OpTypeByName(op_type_name)
831 op.type = op_type
834 if op_type in (common.OpType.MOVE, common.OpType.BSDIFF,
845 if op_type in (common.OpType.REPLACE, common.OpType.REPLACE_BZ):
847 elif op_type in (common.OpType.MOVE, common.OpType.BSDIFF):
849 elif op_type in (common.OpType.SOURCE_COPY, common.OpType.SOURCE_BSDIFF):
851 elif op_type in (common.OpType.ZERO, common.OpType.DISCARD,
854 elif op_type == common.OpType.PUFFDIFF:
857 if op_type not in (common.OpType.MOVE, common.OpType.SOURCE_COPY):
867 op_type == common.OpType.REPLACE)):
[all …]
/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/bt/stack/include/
Dbtm_ble_api_types.h476 uint8_t op_type; member
/system/bt/stack/btm/
Dbtm_ble_adv_filter.cc204 btm_ble_adv_filt_cb.op_type = 0; in btm_flt_update_cb()