Home
last modified time | relevance | path

Searched refs:DbiS (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DPDBFile.cpp259 auto DbiS = getPDBDbiStream(); in getPDBGlobalsStream() local
260 if (!DbiS) in getPDBGlobalsStream()
261 return DbiS.takeError(); in getPDBGlobalsStream()
264 safelyCreateIndexedStream(DbiS->getGlobalSymbolStreamIndex()); in getPDBGlobalsStream()
290 auto DbiS = safelyCreateIndexedStream(StreamDBI); in getPDBDbiStream() local
291 if (!DbiS) in getPDBDbiStream()
292 return DbiS.takeError(); in getPDBDbiStream()
293 auto TempDbi = std::make_unique<DbiStream>(std::move(*DbiS)); in getPDBDbiStream()
332 auto DbiS = getPDBDbiStream(); in getPDBPublicsStream() local
333 if (!DbiS) in getPDBPublicsStream()
[all …]
DNativeExeSymbol.cpp24 Expected<DbiStream &> DbiS = Session.getPDBFile().getPDBDbiStream(); in getDbiStreamPtr() local
25 if (DbiS) in getDbiStreamPtr()
26 return &DbiS.get(); in getDbiStreamPtr()
28 consumeError(DbiS.takeError()); in getDbiStreamPtr()
DNativeSession.cpp44 Expected<DbiStream &> DbiS = File.getPDBDbiStream(); in getDbiStreamPtr() local
45 if (DbiS) in getDbiStreamPtr()
46 return &DbiS.get(); in getDbiStreamPtr()
48 consumeError(DbiS.takeError()); in getDbiStreamPtr()
DDbiStreamBuilder.cpp396 auto DbiS = WritableMappedBlockStream::createIndexedStream( in commit() local
399 BinaryStreamWriter Writer(*DbiS); in commit()