Searched refs:unpack_from (Results 1 – 2 of 2) sorted by relevance
/development/vndk/tools/definition-tool/tools/ |
D | remove_dt_needed.py | 137 return cls._make(struct.unpack_from(fmt, buf, offset))
|
/development/vndk/tools/definition-tool/ |
D | vndk_definition_tool.py | 369 def unpack_from(cls, buf, offset=0): function 370 unpacked = struct.unpack_from(cls.struct_fmt, buf, offset) 372 cls.unpack_from = classmethod(unpack_from) 673 return cls._make(struct.unpack_from(fmt, buf, offset)) 691 p = struct.unpack_from(elf_phdr_fmt, buf, offset) 708 p = struct.unpack_from(elf_sym_fmt, buf, offset) 1000 header = cls.Header.unpack_from(buf, offset=offset) 1019 offset = StringId.unpack_from(buf, offset).string_data_off 1101 magic, version = struct.unpack_from('4s4s', buf) 1119 vdex_header = VdexHeader.unpack_from(buf, offset=0) [all …]
|