Lines Matching defs:eSyms
572 ArrayRef<Elf_Sym> eSyms = CHECK(obj.symbols(symtabSec), this);
573 if (firstGlobal == 0 || firstGlobal > eSyms.size())
576 elfSyms = reinterpret_cast<const void *>(eSyms.data());
577 numELFSyms = uint32_t(eSyms.size());
1127 ArrayRef<Elf_Sym> eSyms = this->getELFSyms<ELFT>();
1129 numSymbols = eSyms.size();
1134 for (size_t i = firstGlobal, end = eSyms.size(); i != end; ++i)
1136 symbols[i] = symtab.insert(CHECK(eSyms[i].getName(stringTable), this));
1140 for (size_t i = firstGlobal, end = eSyms.size(); i != end; ++i) {
1141 const Elf_Sym &eSym = eSyms[i];
1178 const Elf_Sym &eSym = eSyms[i];
1197 ArrayRef<Elf_Sym> eSyms = this->getELFSyms<ELFT>();
1199 const Elf_Sym &eSym = eSyms[i];
1235 ArrayRef<Elf_Sym> eSyms = this->getELFSyms<ELFT>();
1236 for (size_t i = firstGlobal, end = eSyms.size(); i != end; ++i) {
1237 const Elf_Sym &eSym = eSyms[i];
1884 const ArrayRef<typename ELFT::Sym> eSyms = this->getELFSyms<ELFT>();
1885 numSymbols = eSyms.size();
1891 for (size_t i = firstGlobal, end = eSyms.size(); i != end; ++i) {
1892 if (eSyms[i].st_shndx == SHN_UNDEF)
1894 symbols[i] = symtab.insert(CHECK(eSyms[i].getName(stringTable), this));