Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp116 ArrayRef<uint8_t> sectionData; in initializeFileAndStringTable() local
122 cantFail(Obj.getSectionContents(COFFSection, sectionData)); in initializeFileAndStringTable()
124 BinaryStreamReader Reader(sectionData, support::little); in initializeFileAndStringTable()
179 ArrayRef<uint8_t> sectionData; in dumpSections() local
181 cantFail(Obj.getSectionContents(COFFSection, sectionData)); in dumpSections()
182 NewYAMLSection.SectionData = yaml::BinaryRef(sectionData); in dumpSections()
185 NewYAMLSection.DebugS = CodeViewYAML::fromDebugS(sectionData, SC); in dumpSections()
187 NewYAMLSection.DebugT = CodeViewYAML::fromDebugT(sectionData, in dumpSections()
190 NewYAMLSection.DebugP = CodeViewYAML::fromDebugT(sectionData, in dumpSections()
193 NewYAMLSection.DebugH = CodeViewYAML::fromDebugH(sectionData); in dumpSections()
/netbsd-src/external/bsd/elftosb/dist/common/
H A DStELFFile.cpp208 uint8_t * sectionData = new uint8_t[inHeader.sh_size]; in readSectionData() local
213 m_stream.read(reinterpret_cast<char *>(sectionData), inHeader.sh_size); in readSectionData()
226 return sectionData; in readSectionData()