Searched refs:SecIt (Results 1 – 2 of 2) sorted by relevance
2116 for (const auto &SecIt : Sections) { in DWARFObjInMemory() local2117 if (StringRef *SectionData = mapSectionToMember(SecIt.first())) in DWARFObjInMemory()2118 *SectionData = SecIt.second->getBuffer(); in DWARFObjInMemory()2119 else if (SecIt.first() == "debug_info") in DWARFObjInMemory()2122 InfoSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()2123 else if (SecIt.first() == "debug_info.dwo") in DWARFObjInMemory()2124 InfoDWOSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()2125 else if (SecIt.first() == "debug_types") in DWARFObjInMemory()2126 TypesSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()2127 else if (SecIt.first() == "debug_types.dwo") in DWARFObjInMemory()[all …]
1211 auto SecIt = in findSection() local1213 return SecIt == Sections.end() ? nullptr : SecIt->get(); in findSection()