Home
last modified time | relevance | path

Searched refs:op_name (Results 1 – 9 of 9) sorted by relevance

/system/update_engine/scripts/update_payload/
Dchecker.py634 def _CheckLength(self, length, total_blocks, op_name, length_name): argument
648 raise error.PayloadError('%s: %s is zero.' % (op_name, length_name))
652 '%s: %s' % (op_name, length_name))
704 def _CheckReplaceOperation(self, op, data_length, total_dst_blocks, op_name): argument
718 raise error.PayloadError('%s: contains src_extents.' % op_name)
722 raise error.PayloadError('%s: missing data_{offset,length}.' % op_name)
727 op_name + '.data_length', 'dst')
734 (op_name, data_length, total_dst_blocks, self.block_size))
737 total_dst_blocks, op_name): argument
752 raise error.PayloadError('%s: contains data_{offset,length}.' % op_name)
[all …]
Dapplier.py218 def _ApplyReplaceOperation(self, op, op_name, out_data, part_file, part_size): argument
242 '%s.dst_extents' % op_name):
277 (op_name, data_start, data_length))
279 def _ApplyMoveOperation(self, op, op_name, part_file): argument
301 '%s.dst_extents' % op_name)
303 def _ApplyZeroOperation(self, op, op_name, part_file): argument
315 base_name = '%s.dst_extents' % op_name
325 def _ApplySourceCopyOperation(self, op, op_name, old_part_file, argument
341 (op_name, op.type))
350 '%s.dst_extents' % op_name)
[all …]
Dblock_tracer.py57 for op, op_name in common.OperationIter(operations, base_name,
64 op_name + '.dst_extents'):
87 op_name + '.src_extents'):
Dcommon.py189 def _OperationNameFormatter(op, op_name): argument
190 return '%s(%s)' % (op_name, OpType.NAMES.get(op.type, '?'))
Dchecker_unittest.py31 def _OpTypeByName(op_name): argument
46 return op_name_to_type[op_name]
/system/core/libpixelflinger/codeflinger/
Dmips_disassem.c69 static const char * const op_name[64] = { variable
360 db_printf("%s\t%s,", op_name[i.IType.op], in db_disasm_insn()
373 db_printf("%s\t%s,%s,", op_name[i.IType.op], in db_disasm_insn()
461 db_printf("%s\t", op_name[i.JType.op]); in db_disasm_insn()
468 db_printf("%s\tf%d,", op_name[i.IType.op], in db_disasm_insn()
483 db_printf("%s\t%s,", op_name[i.IType.op], in db_disasm_insn()
500 db_printf("%s\t%s,%s,0x%x", op_name[i.IType.op], in db_disasm_insn()
507 db_printf("%s\t%s,0x%x", op_name[i.IType.op], in db_disasm_insn()
514 op_name[i.IType.op], in db_disasm_insn()
532 db_printf("%s\t%s,%s,%d", op_name[i.IType.op], in db_disasm_insn()
Dmips64_disassem.c56 static const char * const op_name[64] = { variable
363 db_printf("%s\t%s,", op_name[i.IType.op], in db_disasm_insn()
374 db_printf("%s\t%s,%s,", op_name[i.IType.op], in db_disasm_insn()
462 db_printf("%s\t", op_name[i.JType.op]); in db_disasm_insn()
469 db_printf("%s\tf%d,", op_name[i.IType.op], in db_disasm_insn()
484 db_printf("%s\t%s,", op_name[i.IType.op], in db_disasm_insn()
501 db_printf("%s\t%s,%s,0x%x", op_name[i.IType.op], in db_disasm_insn()
512 db_printf("%s\t%s,%s,%d", op_name[i.IType.op], in db_disasm_insn()
528 db_printf("%s\t%s,%s,%d", op_name[i.IType.op], in db_disasm_insn()
/system/update_engine/payload_generator/
Dinplace_generator.h197 const std::string& op_name);
Dinplace_generator.cc709 const string& op_name) { in AddInstallOpToGraph() argument
717 (*graph)[vertex].aop.name = op_name; in AddInstallOpToGraph()