Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp352 Expected<ModuleDebugStreamRef> ExpectedModS = in findFunctionSymbolBySectOffset() local
354 if (!ExpectedModS) { in findFunctionSymbolBySectOffset()
355 consumeError(ExpectedModS.takeError()); in findFunctionSymbolBySectOffset()
358 CVSymbolArray Syms = ExpectedModS->getSymbolArray(); in findFunctionSymbolBySectOffset()
458 Expected<ModuleDebugStreamRef> ExpectedModS = in findLineTable() local
460 if (!ExpectedModS) { in findLineTable()
461 consumeError(ExpectedModS.takeError()); in findLineTable()
555 Expected<ModuleDebugStreamRef> ExpectedModS = in findLineNumbersByVA() local
557 if (!ExpectedModS) { in findLineNumbersByVA()
558 consumeError(ExpectedModS.takeError()); in findLineNumbersByVA()
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1470 auto ExpectedModS = getModuleDebugStream(File.pdb(), I); in dumpModuleSymsForPdb() local
1471 if (!ExpectedModS) { in dumpModuleSymsForPdb()
1473 toString(ExpectedModS.takeError())); in dumpModuleSymsForPdb()
1477 ModuleDebugStreamRef &ModS = *ExpectedModS; in dumpModuleSymsForPdb()