Home
last modified time | relevance | path

Searched refs:dso_info (Results 1 – 3 of 3) sorted by relevance

/system/extras/simpleperf/scripts/test/
Dtools_test.py246 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/
Dreport_html.py825 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)
Dsimpleperf_utils.py829 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