Lines Matching refs:consts
27 from vts.utils.python.library.elf import consts
125 consts.EM_ARM: (consts.R_ARM_ABS32, consts.R_ARM_RELATIVE),
126 consts.EM_AARCH64: (consts.R_AARCH64_ABS64, consts.R_AARCH64_RELATIVE),
127 consts.EM_386: (consts.R_386_32, consts.R_386_RELATIVE),
128 consts.EM_X86_64: (consts.R_X86_64_64, consts.R_X86_64_RELATIVE),
139 is_rela = rel_sh.sh_type in (consts.SHT_RELA,
140 consts.SHT_ANDROID_RELA)
141 is_relr = rel_sh.sh_type in (consts.SHT_RELR,
142 consts.SHT_ANDROID_RELR)
167 sym_is_undefined = (sym.st_shndx == consts.SHN_UNDEF)
210 if sym.st_shndx == consts.SHN_UNDEF:
245 if (sym.GetType() in (consts.STT_OBJECT, consts.STT_FUNC)
246 and sym.st_shndx != consts.SHN_UNDEF):
293 if sh.sh_type == consts.SHT_NOBITS:
305 sh_rel_types = (consts.SHT_REL, consts.SHT_RELA, consts.SHT_RELR,
306 consts.SHT_ANDROID_REL, consts.SHT_ANDROID_RELA,
307 consts.SHT_ANDROID_RELR)