Lines Matching refs:Pdb
52 Error DbiStream::reload(PDBFile *Pdb) { in reload() argument
125 if (auto EC = initializeSectionHeadersData(Pdb)) in reload()
129 if (auto EC = initializeOldFpoRecords(Pdb)) in reload()
131 if (auto EC = initializeNewFpoRecords(Pdb)) in reload()
258 Error DbiStream::initializeSectionHeadersData(PDBFile *Pdb) { in initializeSectionHeadersData() argument
260 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::SectionHdr); in initializeSectionHeadersData()
284 Error DbiStream::initializeOldFpoRecords(PDBFile *Pdb) { in initializeOldFpoRecords() argument
286 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::FPO); in initializeOldFpoRecords()
308 Error DbiStream::initializeNewFpoRecords(PDBFile *Pdb) { in initializeNewFpoRecords() argument
310 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::NewFPO); in initializeNewFpoRecords()
326 DbiStream::createIndexedStreamForHeaderType(PDBFile *Pdb, in createIndexedStreamForHeaderType() argument
328 if (!Pdb) in createIndexedStreamForHeaderType()
340 return Pdb->safelyCreateIndexedStream(StreamNum); in createIndexedStreamForHeaderType()