Searched refs:RelSecOrErr (Results 1 – 4 of 4) sorted by relevance
362 Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection(); in loadObjectImpl() local363 if (!RelSecOrErr) in loadObjectImpl()364 return RelSecOrErr.takeError(); in loadObjectImpl()366 section_iterator RelocatedSection = *RelSecOrErr; in loadObjectImpl()673 Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection(); in computeSectionStubBufSize() local674 if (!RelSecOrErr) in computeSectionStubBufSize()675 report_fatal_error(toString(RelSecOrErr.takeError())); in computeSectionStubBufSize()677 section_iterator RelSecI = *RelSecOrErr; in computeSectionStubBufSize()
675 Expected<section_iterator> RelSecOrErr = si->getRelocatedSection(); in findOPDEntrySection() local676 if (!RelSecOrErr) in findOPDEntrySection()677 report_fatal_error(toString(RelSecOrErr.takeError())); in findOPDEntrySection()679 section_iterator RelSecI = *RelSecOrErr; in findOPDEntrySection()1950 Expected<section_iterator> RelSecOrErr = SI->getRelocatedSection(); in finalizeLoad() local1951 if (!RelSecOrErr) in finalizeLoad()1953 toString(RelSecOrErr.takeError())); in finalizeLoad()1955 section_iterator RelocatedSection = *RelSecOrErr; in finalizeLoad()
408 auto RelSecOrErr = EF.getSection(Rel.d.a); in getRelSection() local409 if (!RelSecOrErr) in getRelSection()410 report_fatal_error(errorToErrorCode(RelSecOrErr.takeError()).message()); in getRelSection()411 return *RelSecOrErr; in getRelSection()
5898 Expected<const Elf_Shdr *> RelSecOrErr = Obj.getSection(Sec.sh_info); in printRelocatableStackSizes() local5899 if (!RelSecOrErr) { in printRelocatableStackSizes()5902 toString(RelSecOrErr.takeError())); in printRelocatableStackSizes()5906 const Elf_Shdr *ContentsSec = *RelSecOrErr; in printRelocatableStackSizes()5907 if (this->getPrintableSectionName(**RelSecOrErr) != ".stack_sizes") in printRelocatableStackSizes()