Home
last modified time | relevance | path

Searched refs:SectionsOrError (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DELFDump.cpp77 auto SectionsOrError = Elf.sections(); in getDynamicStrTab() local
78 if (!SectionsOrError) in getDynamicStrTab()
79 return SectionsOrError.takeError(); in getDynamicStrTab()
81 for (const typename ELFT::Shdr &Sec : *SectionsOrError) { in getDynamicStrTab()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp629 auto SectionsOrError = sections(); in dynamicEntries() local
630 if (!SectionsOrError) in dynamicEntries()
631 return SectionsOrError.takeError(); in dynamicEntries()
633 for (const Elf_Shdr &Sec : *SectionsOrError) { in dynamicEntries()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h826 Expected<Elf_Shdr_Range> SectionsOrError = sections(); in getDynSymtabSize() local
827 if (!SectionsOrError) in getDynSymtabSize()
828 return SectionsOrError.takeError(); in getDynSymtabSize()
829 for (const Elf_Shdr &Sec : *SectionsOrError) { in getDynSymtabSize()
841 if (!SectionsOrError->empty()) { in getDynSymtabSize()