Searched refs:dso_info (Results 1 – 3 of 3) sorted by relevance
/system/extras/simpleperf/scripts/test/ |
D | tools_test.py | 245 dso_info = objdump.get_dso_info(dso_path, None) 246 self.assertIsNotNone(dso_info, dso_path) 247 disassemble_code = objdump.disassemble_code(dso_info, dso['start_addr'], dso['len']) 285 dso_info = test_map[dso_path] 287 self.assertEqual(dso_info['arch'], readelf.get_arch(path)) 288 if 'build_id' in dso_info: 289 self.assertEqual(dso_info['build_id'], readelf.get_build_id(path), dso_path) 290 if 'sections' in dso_info: 292 for section in dso_info['sections']:
|
/system/extras/simpleperf/scripts/ |
D | report_html.py | 799 dso_info = objdump.get_dso_info(lib.name, lib.build_id) 800 if not dso_info: 802 logging.info('Disassemble %s' % dso_info[0]) 806 executor.submit(objdump.disassemble_code, dso_info,
|
D | simpleperf_utils.py | 809 def disassemble_code(self, dso_info, start_addr, addr_len) -> List[Tuple[str, int]]: argument 813 real_path, arch = dso_info
|