Lines Matching refs:NewYAMLSection

157     COFFYAML::Section NewYAMLSection;  in dumpSections()  local
160 NewYAMLSection.Name = *NameOrErr; in dumpSections()
164 NewYAMLSection.Header.Characteristics = COFFSection->Characteristics; in dumpSections()
165 NewYAMLSection.Header.VirtualAddress = COFFSection->VirtualAddress; in dumpSections()
166 NewYAMLSection.Header.VirtualSize = COFFSection->VirtualSize; in dumpSections()
167 NewYAMLSection.Header.NumberOfLineNumbers = in dumpSections()
169 NewYAMLSection.Header.NumberOfRelocations = in dumpSections()
171 NewYAMLSection.Header.PointerToLineNumbers = in dumpSections()
173 NewYAMLSection.Header.PointerToRawData = COFFSection->PointerToRawData; in dumpSections()
174 NewYAMLSection.Header.PointerToRelocations = in dumpSections()
176 NewYAMLSection.Header.SizeOfRawData = COFFSection->SizeOfRawData; in dumpSections()
178 NewYAMLSection.Alignment = (1U << Shift) >> 1; in dumpSections()
179 assert(NewYAMLSection.Alignment <= 8192); in dumpSections()
184 NewYAMLSection.SectionData = yaml::BinaryRef(sectionData); in dumpSections()
186 if (NewYAMLSection.Name == ".debug$S") in dumpSections()
187 NewYAMLSection.DebugS = CodeViewYAML::fromDebugS(sectionData, SC); in dumpSections()
188 else if (NewYAMLSection.Name == ".debug$T") in dumpSections()
189 NewYAMLSection.DebugT = CodeViewYAML::fromDebugT(sectionData, in dumpSections()
190 NewYAMLSection.Name); in dumpSections()
191 else if (NewYAMLSection.Name == ".debug$P") in dumpSections()
192 NewYAMLSection.DebugP = CodeViewYAML::fromDebugT(sectionData, in dumpSections()
193 NewYAMLSection.Name); in dumpSections()
194 else if (NewYAMLSection.Name == ".debug$H") in dumpSections()
195 NewYAMLSection.DebugH = CodeViewYAML::fromDebugH(sectionData); in dumpSections()
217 NewYAMLSection.Relocations = Relocations; in dumpSections()
218 YAMLSections.push_back(NewYAMLSection); in dumpSections()