HomeSort by: relevance | last modified time | path
    Searched refs:SectionsOrError (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
ELFDump.cpp 43 auto SectionsOrError = Elf.sections();
44 if (!SectionsOrError)
45 return SectionsOrError.takeError();
47 for (const typename ELFT::Shdr &Sec : *SectionsOrError) {
  /src/external/apache2/llvm/dist/llvm/lib/Object/
ELF.cpp 533 auto SectionsOrError = sections();
534 if (!SectionsOrError)
535 return SectionsOrError.takeError();
537 for (const Elf_Shdr &Sec : *SectionsOrError) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ELF.h 696 Expected<Elf_Shdr_Range> SectionsOrError = sections();
697 if (!SectionsOrError)
698 return SectionsOrError.takeError();
699 for (const Elf_Shdr &Sec : *SectionsOrError) {
711 if (!SectionsOrError->empty()) {

Completed in 23 milliseconds