Searched refs:Elf_Sym (Results 1 – 3 of 3) sorted by relevance
/development/vndk/tools/definition-tool/tools/ |
D | remove_dt_needed.py | 27 class Elf_Sym(collections.namedtuple( class 42 return self.st_bind == Elf_Sym.STB_LOCAL 46 return self.st_bind == Elf_Sym.STB_GLOBAL 50 return self.st_bind == Elf_Sym.STB_WEAK 54 return self.st_shndx == Elf_Sym.SHN_UNDEF
|
/development/vndk/tools/definition-tool/tests/ |
D | test_elf.py | 8 from vndk_definition_tool import Elf_Sym, ELF 15 self.sym_local = Elf_Sym(0, 0, 4, 0, 0, 1) 16 self.sym_global = Elf_Sym(0, 0, 4, 17, 0, 1) 17 self.sym_weak = Elf_Sym(0, 0, 4, 33, 0, 1) 18 self.sym_undef = Elf_Sym(0, 0, 4, 16, 0, 0)
|
/development/vndk/tools/header-checker/src/repr/symbol/ |
D | so_file_parser.cpp | 70 bool IsSymbolExported(const Elf_Sym *elf_sym) const { in IsSymbolExported() 94 const Elf_Sym *elf_sym = elf_sym_or_error.get(); in ELFSoFileParser()
|