Home
last modified time | relevance | path

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

/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleList.cpp193 if (auto EC = FISR.readObject(FileInfoHeader)) in initializeFileInfo()
199 if (auto EC = FISR.readArray(ModuleIndices, FileInfoHeader->NumModules)) in initializeFileInfo()
201 if (auto EC = FISR.readArray(ModFileCountArray, FileInfoHeader->NumModules)) in initializeFileInfo()
205 // `FileInfoHeader->NumSourceFiles` because it is a unit16, and the sum of all in initializeFileInfo()
224 ModuleInitialFileIndex.resize(FileInfoHeader->NumModules); in initializeFileInfo()
225 ModuleDescriptorOffsets.resize(FileInfoHeader->NumModules); in initializeFileInfo()
226 for (size_t I = 0; I < FileInfoHeader->NumModules; ++I) { in initializeFileInfo()
244 return FileInfoHeader ? FileInfoHeader->NumModules : 0; in getModuleCount()
/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiModuleList.h106 const FileInfoSubstreamHeader *FileInfoHeader = nullptr; variable