Home
last modified time | relevance | path

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

/test/vts/utils/python/library/
Delf_parser.py92 if utils.ByteToInt(e_ident[consts.EI_CLASS]) not in (
95 .format(e_ident[consts.EI_CLASS]))
104 if utils.ByteToInt(e_ident[consts.EI_CLASS]) == consts.ELFCLASS32:
/test/vts/utils/python/library/elf/
Dconsts.py23 EI_CLASS = 4 # File class variable
Dstructs.py59 return self.e_ident[consts.EI_CLASS]
/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DReadElf.java40 private static final int EI_CLASS = 4; field in ReadElf
756 int elfClass = mBuffer[EI_CLASS]; in readHeader()