/freebsd/contrib/llvm-project/lldb/source/Host/posix/ |
H A D | FileSystemPosix.cpp | 63 char real_path[PATH_MAX + 1]; in ResolveSymbolicLink() local 64 if (realpath(resolved_path, real_path) == nullptr) { in ResolveSymbolicLink() 70 dst = FileSpec(real_path); in ResolveSymbolicLink()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | ModuleDependencyCollector.cpp | 98 if (llvm::sys::fs::real_path(Path, TmpDest)) in isCaseSensitivePath() 108 if (!llvm::sys::fs::real_path(UpperDest, RealDest) && Path == RealDest) in isCaseSensitivePath()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | FileCollector.cpp | 38 if (sys::fs::real_path(Path, TmpDest)) in isCaseSensitivePath() 47 if (!sys::fs::real_path(UpperDest, RealDest) && Path == RealDest) in isCaseSensitivePath() 72 if (sys::fs::real_path(Directory, RealPath)) in updateWithRealPath()
|
H A D | VirtualFileSystem.cpp | 273 else if (llvm::sys::fs::real_path(PWD, RealPWD)) in RealFileSystem() 359 if (auto Err = llvm::sys::fs::real_path(Absolute, Resolved)) in setCurrentWorkingDirectory() 373 return llvm::sys::fs::real_path(adjustPath(Path, Storage), Output); in getRealPath()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | TildeExpressionResolver.cpp | 39 return !fs::real_path(Expr, Output, true); in ResolveExact()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
H A D | Path.inc | 272 if (char *real_path = realpath(exe_path, nullptr)) { 273 std::string ret = std::string(real_path); 274 free(real_path); 278 char real_path[PATH_MAX]; 279 if (realpath(exe_path, real_path)) 280 return std::string(real_path); 320 char real_path[PATH_MAX]; 321 if (realpath(exe_path, real_path)) 322 return std::string(real_path); 1315 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest, [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/ |
H A D | DWARFLinkerDeclContext.h |
|
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | operations.cpp | 344 const path real_path(__read_symlink(existing_symlink, ec)); in __copy_symlink() local 350 if (is_directory(real_path, local_ec)) in __copy_symlink() 351 __create_directory_symlink(real_path, new_symlink, ec); in __copy_symlink() 354 __create_symlink(real_path, new_symlink, ec); in __copy_symlink()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Support/ |
H A D | SupportHelpers.h | 129 EC = llvm::sys::fs::real_path(UnresolvedPath, Path);
|
/freebsd/contrib/llvm-project/llvm/lib/LTO/ |
H A D | LTOCodeGenerator.cpp | 256 if (llvm::sys::fs::real_path(llvm::AIXSystemAssemblerPath, AssemblerPath, in runAIXSystemAssembler()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | Path.inc | 159 sys::fs::real_path(PathNameUTF8, RealPath); 1438 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest, 1448 return real_path(Storage, dest, false);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | FileSystem.h | 343 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | Driver.cpp | 135 if (!fs::real_path(symlink, location)) { in findFramework() 1575 if (!fs::real_path(config->osoPrefix, expanded, in link()
|
H A D | InputFiles.cpp | 1621 fs::real_path(umbrella->getName(), newPath); in findDylib() 1629 fs::real_path(umbrella->getName(), newPath); in findDylib()
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | Cuda.cpp | 173 llvm::sys::fs::real_path(*ptxas, ptxasAbsolutePath); in CudaInstallationDetector()
|
H A D | AMDGPU.cpp | 260 llvm::sys::fs::real_path(D.getClangProgramPath(), RealClangPath); in getInstallationPathCandidates()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | GCOVProfiling.cpp | 487 // such a case we must get the real_path. in isFunctionInstrumented() 488 if (sys::fs::real_path(Filename, RealPath)) { in isFunctionInstrumented() 489 // real_path can fail with path like "foo.c". in isFunctionInstrumented()
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
H A D | DWARFLinkerCompileUnit.cpp | 215 sys::fs::real_path(ParentPath, RealPath); in getFileName()
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ |
H A D | Driver.cpp | 3043 llvm::sys::fs::real_path(IA->getInputArg().getValue(), RealPath, in addDeviceDependences()
|