Searched refs:dso_info (Results 1 – 3 of 3) sorted by relevance
/system/extras/simpleperf/scripts/test/ |
D | tools_test.py | 182 dso_info = objdump.get_dso_info(dso_path, None) 183 self.assertIsNotNone(dso_info, dso_path) 184 disassemble_code = objdump.disassemble_code(dso_info, dso['start_addr'], dso['len']) 222 dso_info = test_map[dso_path] 224 self.assertEqual(dso_info['arch'], readelf.get_arch(path)) 225 if 'build_id' in dso_info: 226 self.assertEqual(dso_info['build_id'], readelf.get_build_id(path), dso_path) 227 if 'sections' in dso_info: 229 for section in dso_info['sections']:
|
/system/extras/simpleperf/scripts/ |
D | report_html.py | 801 dso_info = objdump.get_dso_info(lib.name, lib.build_id) 802 if not dso_info: 804 log_info('Disassemble %s' % dso_info[0]) 806 def task(function, dso_info): argument 808 dso_info, function.start_addr, function.addr_len) 809 executor.submit(task, function, dso_info)
|
D | simpleperf_utils.py | 813 def disassemble_code(self, dso_info, start_addr, addr_len) -> List[Tuple[str, int]]: argument 817 real_path, arch = dso_info
|