Home
last modified time | relevance | path

Searched refs:PathOrErr (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Debuginfod/
H A DDebuginfod.cpp504 if (!PathOrErr) in findBinaryPath()
505 return PathOrErr.takeError(); in findBinaryPath()
514 if (!PathOrErr) in findBinaryPath()
516 Path = *PathOrErr; in findBinaryPath()
525 if (!PathOrErr) in findBinaryPath()
535 if (!PathOrErr) in findDebugBinaryPath()
536 return PathOrErr.takeError(); in findDebugBinaryPath()
544 PathOrErr = getBinaryPath(ID); in findDebugBinaryPath()
545 if (!PathOrErr) in findDebugBinaryPath()
546 return PathOrErr.takeError(); in findDebugBinaryPath()
[all …]
H A DBuildIDFetcher.cpp26 Expected<std::string> PathOrErr = getCachedOrDownloadDebuginfo(BuildID); in fetch() local
27 if (PathOrErr) in fetch()
28 return *PathOrErr; in fetch()
29 consumeError(PathOrErr.takeError()); in fetch()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp760 Expected<std::string> PathOrErr = in addChildMember() local
763 PathOrErr ? *PathOrErr : sys::path::convert_to_slash(*FileNameOrErr)); in addChildMember()
798 Expected<std::string> PathOrErr = in getArchiveMember() local
801 PathOrErr ? *PathOrErr : sys::path::convert_to_slash(FileName)); in getArchiveMember()
857 Expected<std::string> PathOrErr = in computeInsertAction() local
859 return comparePaths(Name, PathOrErr ? *PathOrErr : Path); in computeInsertAction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeSession.cpp175 Expected<std::string> PathOrErr = getPdbPathFromExe(Opts.ExePath); in searchForPdb() local
176 if (!PathOrErr) in searchForPdb()
177 return PathOrErr.takeError(); in searchForPdb()
178 StringRef PathFromExe = PathOrErr.get(); in searchForPdb()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp474 Expected<std::string> PathOrErr = in libDriverMain() local
476 if (PathOrErr) in libDriverMain()
477 Member.MemberName = Saver.save(*PathOrErr); in libDriverMain()