Searched refs:PdbPath (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | NativeSession.cpp | 93 loadPdbFile(StringRef PdbPath, std::unique_ptr<BumpPtrAllocator> &Allocator) { in loadPdbFile() argument 95 MemoryBuffer::getFile(PdbPath, /*IsText=*/false, in loadPdbFile() 101 PdbPath = Buffer->getBufferIdentifier(); in loadPdbFile() 103 auto EC = identify_magic(PdbPath, Magic); in loadPdbFile() 110 auto File = std::make_unique<PDBFile>(PdbPath, std::move(Stream), *Allocator); in loadPdbFile() 120 Error NativeSession::createFromPdbPath(StringRef PdbPath, in createFromPdbPath() argument 123 auto PdbFile = loadPdbFile(PdbPath, Allocator); in createFromPdbPath() 143 StringRef PdbPath; in getPdbPathFromExe() local 145 if (Error E = ObjFile->getDebugPDBInfo(PdbInfo, PdbPath)) in getPdbPathFromExe() 148 return std::string(PdbPath); in getPdbPathFromExe() 153 Expected<std::string> PdbPath = getPdbPathFromExe(ExePath); createFromExe() local 185 SmallString<128> PdbPath = StringRef(Opts.ExePath); searchForPdb() local [all...] |
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
H A D | PDB.cpp | 39 Expected<std::string> PdbPath = NativeSession::searchForPdb({Path}); in loadDataForEXE() local 40 if (!PdbPath) in loadDataForEXE() 41 return PdbPath.takeError(); in loadDataForEXE() 42 return NativeSession::createFromPdbPath(PdbPath.get(), Session); in loadDataForEXE()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/ |
H A D | ObjectFilePDB.cpp | 167 ObjectFilePDB::loadPDBFile(std::string PdbPath, in loadPDBFile() argument 170 auto ec = llvm::identify_magic(PdbPath, magic); in loadPDBFile() 174 llvm::MemoryBuffer::getFile(PdbPath, /*IsText=*/false, in loadPDBFile()
|
H A D | ObjectFilePDB.h | 31 loadPDBFile(std::string PdbPath, llvm::BumpPtrAllocator &Allocator);
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/ |
H A D | LVReaderHandler.cpp | 180 Expected<std::string> PdbPath = NativeSession::searchForPdb({Filename}); in handleBuffer() local 181 if (errorToErrorCode(PdbPath.takeError())) { in handleBuffer() 188 return handleFile(Readers, PdbPath.get(), Filename); in handleBuffer()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | NativeSession.h | 45 static Error createFromPdbPath(StringRef PdbPath,
|