Home
last modified time | relevance | path

Searched refs:SecIt (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1738 for (const auto &SecIt : Sections) { in DWARFObjInMemory() local
1739 if (StringRef *SectionData = mapSectionToMember(SecIt.first())) in DWARFObjInMemory()
1740 *SectionData = SecIt.second->getBuffer(); in DWARFObjInMemory()
1741 else if (SecIt.first() == "debug_info") in DWARFObjInMemory()
1744 InfoSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()
1745 else if (SecIt.first() == "debug_info.dwo") in DWARFObjInMemory()
1746 InfoDWOSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()
1747 else if (SecIt.first() == "debug_types") in DWARFObjInMemory()
1748 TypesSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()
1749 else if (SecIt.first() == "debug_types.dwo") in DWARFObjInMemory()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.h1078 auto SecIt = in findSection() local
1080 return SecIt == Sections.end() ? nullptr : SecIt->get(); in findSection()