Home
last modified time | relevance | path

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

/test/vts-testcase/kernel/pagesize_16kb/
DVts16KPageSizeTest.cpp42 android::elf64::Elf64Binary elf; in MaxPageSize() local
44 if (!android::elf64::Elf64Parser::ParseElfFile(filepath, elf)) { in MaxPageSize()
48 for (int i = 0; i < elf.phdrs.size(); i++) { in MaxPageSize()
49 Elf64_Phdr phdr = elf.phdrs[i]; in MaxPageSize()
/test/vts-testcase/vndk/dependency/
Dvts_vndk_dependency_test.py136 def _IsElfObjectForAp(self, elf, target_path, abi_list): argument
147 if not any(elf.MatchCpuAbi(x) for x in abi_list):
153 if not elf.IsExecutable():
157 interp = elf.GetProgramInterpreter()
167 def _IsElfObjectBuiltForAndroid(self, elf, target_path): argument
185 if elf.HasAndroidIdent():
191 elf.IsSharedObject()):
197 interp = elf.GetProgramInterpreter()
199 if elf.IsExecutable() or self._dut.IsExecutable(target_path):
234 elf = elf_parser.ElfParser(target_path)
[all …]
/test/vts/vndk_utils/library/
DREADME.md4 * elf/consts.py: Contains ELF constants.
5 * elf/structs.py: Contains ELF C structs and data types.
11 https://refspecs.linuxfoundation.org/elf/gabi4+/contents.html
Delf_parser_test.py22 from vts.utils.python.library import elf_parser as elf unknown
62 self.elf_file = elf.ElfParser(self.elf_file_path)
Delf_parser.py29 from vts.utils.python.library.elf import consts
30 from vts.utils.python.library.elf import structs
31 from vts.utils.python.library.elf import utils
/test/vts/vndk_utils/
DAndroid.bp28 "library/elf/__init__.py",
29 "library/elf/consts.py",
30 "library/elf/utils.py",
31 "library/elf/structs.py",
/test/vts/vndk_utils/library/elf/
Dutils_test.py21 from vts.utils.python.library.elf import utils as elf_utils
Dstructs.py20 from vts.utils.python.library.elf import consts
/test/vts/vndk_utils/library/vtable/
Dvtable_dumper.py27 from vts.utils.python.library.elf import consts