Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DSymbolCache.cpp346 Expected<ModuleDebugStreamRef> ExpectedModS = in findFunctionSymbolBySectOffset() local
348 if (!ExpectedModS) { in findFunctionSymbolBySectOffset()
349 consumeError(ExpectedModS.takeError()); in findFunctionSymbolBySectOffset()
352 CVSymbolArray Syms = ExpectedModS->getSymbolArray(); in findFunctionSymbolBySectOffset()
452 Expected<ModuleDebugStreamRef> ExpectedModS = in findLineTable() local
454 if (!ExpectedModS) { in findLineTable()
455 consumeError(ExpectedModS.takeError()); in findLineTable()
460 for (const auto &SS : ExpectedModS->getSubsectionsArray()) { in findLineTable()
545 Expected<ModuleDebugStreamRef> ExpectedModS = in findLineNumbersByVA() local
547 if (!ExpectedModS) { in findLineNumbersByVA()
[all …]
/external/llvm-project/llvm/tools/llvm-pdbutil/
DDumpOutputStyle.cpp1582 auto ExpectedModS = getModuleDebugStream(File.pdb(), I); in dumpModuleSymsForPdb() local
1583 if (!ExpectedModS) { in dumpModuleSymsForPdb()
1585 toString(ExpectedModS.takeError())); in dumpModuleSymsForPdb()
1589 ModuleDebugStreamRef &ModS = *ExpectedModS; in dumpModuleSymsForPdb()