Home
last modified time | relevance | path

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

/system/extras/simpleperf/scripts/
Dutils.py740 def get_arch(self, elf_file_path): argument
742 if is_elf_file(elf_file_path):
744 output = subprocess.check_output([self.readelf_path, '-h', elf_file_path])
758 def get_build_id(self, elf_file_path, with_padding=True): argument
760 if is_elf_file(elf_file_path):
762 output = subprocess.check_output([self.readelf_path, '-n', elf_file_path])
783 def get_sections(self, elf_file_path): argument
786 if is_elf_file(elf_file_path):
788 output = subprocess.check_output([self.readelf_path, '-SW', elf_file_path])