Lines Matching defs:eSyms
526 ArrayRef<Elf_Sym> eSyms = CHECK2(obj.symbols(symtabSec), this);
527 if (firstGlobal == 0 || firstGlobal > eSyms.size())
530 elfSyms = reinterpret_cast<const void *>(eSyms.data());
531 numSymbols = eSyms.size();
1104 ArrayRef<Elf_Sym> eSyms = this->getELFSyms<ELFT>();
1110 for (size_t i = firstGlobal, end = eSyms.size(); i != end; ++i)
1112 symbols[i] = symtab->insert(CHECK2(eSyms[i].getName(stringTable), this));
1116 for (size_t i = firstGlobal, end = eSyms.size(); i != end; ++i) {
1117 const Elf_Sym &eSym = eSyms[i];
1154 const Elf_Sym &eSym = eSyms[i];
1173 ArrayRef<Elf_Sym> eSyms = this->getELFSyms<ELFT>();
1175 const Elf_Sym &eSym = eSyms[i];
1216 ArrayRef<Elf_Sym> eSyms = this->getELFSyms<ELFT>();
1217 for (size_t i = firstGlobal, end = eSyms.size(); i != end; ++i) {
1218 const Elf_Sym &eSym = eSyms[i];
1900 const ArrayRef<typename ELFT::Sym> eSyms = this->getELFSyms<ELFT>();
1901 numSymbols = eSyms.size();
1908 for (size_t i = firstGlobal, end = eSyms.size(); i != end; ++i) {
1909 if (eSyms[i].st_shndx == SHN_UNDEF)
1911 symbols[i] = symtab->insert(CHECK2(eSyms[i].getName(stringTable), this));