Searched refs:dso_info (Results 1 – 3 of 3) sorted by relevance
/system/extras/simpleperf/scripts/test/ |
D | tools_test.py | 246 dso_info = objdump.get_dso_info(dso_path, None) 247 self.assertIsNotNone(dso_info, dso_path) 249 disassembly = objdump.disassemble_function(dso_info, addr_range) 253 result = objdump.disassemble_functions(dso_info, [addr_range]) 358 dso_info = test_map[dso_path] 360 self.assertEqual(dso_info['arch'], readelf.get_arch(path)) 361 if 'build_id' in dso_info: 362 self.assertEqual(dso_info['build_id'], readelf.get_build_id(path), dso_path) 363 if 'sections' in dso_info: 365 for section in dso_info['sections']:
|
/system/extras/simpleperf/scripts/ |
D | report_html.py | 825 dso_info = objdump.get_dso_info(lib.name, lib.build_id) 826 if not dso_info: 834 self._disassemble_functions, objdump, dso_info, task)) 863 def _disassemble_functions(self, objdump: Objdump, dso_info, argument 866 return objdump.disassemble_functions(dso_info, addr_ranges)
|
D | simpleperf_utils.py | 829 def disassemble_function(self, dso_info, addr_range: AddrRange) -> Optional[Disassembly]: argument 832 real_path, arch = dso_info 868 def disassemble_functions(self, dso_info, sorted_addr_ranges: List[AddrRange] argument 875 real_path, arch = dso_info
|