Lines Matching refs:Pdb
50 Error DbiStream::reload(PDBFile *Pdb) { in reload() argument
123 if (auto EC = initializeSectionHeadersData(Pdb)) in reload()
127 if (auto EC = initializeOldFpoRecords(Pdb)) in reload()
129 if (auto EC = initializeNewFpoRecords(Pdb)) in reload()
256 Error DbiStream::initializeSectionHeadersData(PDBFile *Pdb) { in initializeSectionHeadersData() argument
258 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::SectionHdr); in initializeSectionHeadersData()
282 Error DbiStream::initializeOldFpoRecords(PDBFile *Pdb) { in initializeOldFpoRecords() argument
284 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::FPO); in initializeOldFpoRecords()
306 Error DbiStream::initializeNewFpoRecords(PDBFile *Pdb) { in initializeNewFpoRecords() argument
308 createIndexedStreamForHeaderType(Pdb, DbgHeaderType::NewFPO); in initializeNewFpoRecords()
324 DbiStream::createIndexedStreamForHeaderType(PDBFile *Pdb, in createIndexedStreamForHeaderType() argument
326 if (!Pdb) in createIndexedStreamForHeaderType()
338 return Pdb->safelyCreateIndexedStream(StreamNum); in createIndexedStreamForHeaderType()