Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp347 Expected<ModuleDebugStreamRef> ExpectedModS = in findFunctionSymbolBySectOffset() local
349 if (!ExpectedModS) { in findFunctionSymbolBySectOffset()
350 consumeError(ExpectedModS.takeError()); in findFunctionSymbolBySectOffset()
353 CVSymbolArray Syms = ExpectedModS->getSymbolArray(); in findFunctionSymbolBySectOffset()
453 Expected<ModuleDebugStreamRef> ExpectedModS = in findLineTable() local
455 if (!ExpectedModS) { in findLineTable()
456 consumeError(ExpectedModS.takeError()); in findLineTable()
550 Expected<ModuleDebugStreamRef> ExpectedModS = in findLineNumbersByVA() local
552 if (!ExpectedModS) { in findLineNumbersByVA()
553 consumeError(ExpectedModS.takeError()); in findLineNumbersByVA()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1578 auto ExpectedModS = getModuleDebugStream(File.pdb(), I); in dumpModuleSymsForPdb() local
1579 if (!ExpectedModS) { in dumpModuleSymsForPdb()
1581 toString(ExpectedModS.takeError())); in dumpModuleSymsForPdb()
1585 ModuleDebugStreamRef &ModS = *ExpectedModS; in dumpModuleSymsForPdb()