Searched refs:SectionsOrErr (Results 1 – 5 of 5) sorted by relevance
51 Expected<typename ELFT::ShdrRange> SectionsOrErr = in findSectionByAddress() local53 if (!SectionsOrErr) in findSectionByAddress()54 reportError(SectionsOrErr.takeError(), ObjF.getFileName()); in findSectionByAddress()56 for (const typename ELFT::Shdr &Shdr : *SectionsOrErr) in findSectionByAddress()82 Expected<typename ELFT::ShdrRange> SectionsOrErr = Obj.sections(); in printUnwindInformation() local83 if (!SectionsOrErr) in printUnwindInformation()84 reportError(SectionsOrErr.takeError(), ObjF.getFileName()); in printUnwindInformation()86 for (const Elf_Shdr &Shdr : *SectionsOrErr) { in printUnwindInformation()
363 auto SectionsOrErr = EF.sections(); in toDRI() local364 if (!SectionsOrErr) { in toDRI()369 uintptr_t SHT = reinterpret_cast<uintptr_t>((*SectionsOrErr).begin()); in toDRI()423 auto SectionsOrErr = EF.sections(); in getBuildAttributes() local424 if (!SectionsOrErr) in getBuildAttributes()425 return SectionsOrErr.takeError(); in getBuildAttributes()426 for (const Elf_Shdr &Sec : *SectionsOrErr) { in getBuildAttributes()525 auto SectionsOrErr = EF.sections(); in initContent() local526 if (!SectionsOrErr) in initContent()527 return SectionsOrErr.takeError(); in initContent()[all …]
1244 auto SectionsOrErr = sections(); in getSHNDXTable() local1245 if (!SectionsOrErr) in getSHNDXTable()1246 return SectionsOrErr.takeError(); in getSHNDXTable()1247 return getSHNDXTable(Section, *SectionsOrErr); in getSHNDXTable()1282 auto SectionsOrErr = sections(); in getStringTableForSymtab() local1283 if (!SectionsOrErr) in getStringTableForSymtab()1284 return SectionsOrErr.takeError(); in getStringTableForSymtab()1285 return getStringTableForSymtab(Sec, *SectionsOrErr); in getStringTableForSymtab()1324 auto SectionsOrErr = sections(); in getSectionName() local1325 if (!SectionsOrErr) in getSectionName()[all …]
274 if (auto SectionsOrErr = Obj.sections()) in prepare() local275 Sections = *SectionsOrErr; in prepare()277 return SectionsOrErr.takeError(); in prepare()
489 auto SectionsOrErr = getSectionNames(getPdb()); in dumpModules() local490 if (!SectionsOrErr) in dumpModules()491 return SectionsOrErr.takeError(); in dumpModules()492 ArrayRef<std::string> Sections = *SectionsOrErr; in dumpModules()