Home
last modified time | relevance | path

Searched refs:real_path (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DFileSystemPosix.cpp55 char real_path[PATH_MAX + 1]; in ResolveSymbolicLink() local
56 if (realpath(resolved_path, real_path) == nullptr) { in ResolveSymbolicLink()
60 dst = FileSpec(real_path); in ResolveSymbolicLink()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DModuleDependencyCollector.cpp97 if (llvm::sys::fs::real_path(Path, TmpDest)) in isCaseSensitivePath()
107 if (!llvm::sys::fs::real_path(UpperDest, RealDest) && Path == RealDest) in isCaseSensitivePath()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFileCollector.cpp38 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 DVirtualFileSystem.cpp273 else if (llvm::sys::fs::real_path(PWD, RealPWD)) in RealFileSystem()
371 if (auto Err = llvm::sys::fs::real_path(Absolute, Resolved)) in setCurrentWorkingDirectory()
385 return llvm::sys::fs::real_path(adjustPath(Path, Storage), Output); in getRealPath()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DTildeExpressionResolver.cpp39 return !fs::real_path(Expr, Output, true); in ResolveExact()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DPPCLinux.cpp26 if (fs::real_path(Linker, Path)) in GlibcSupportsFloat128()
H A DAMDGPU.cpp196 llvm::sys::fs::real_path(D.getClangProgramPath(), RealClangPath); in getInstallationPathCandidates()
H A DCuda.cpp175 llvm::sys::fs::real_path(*ptxas, ptxasAbsolutePath); in CudaInstallationDetector()
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc271 if (char *real_path = realpath(exe_path, nullptr)) {
272 std::string ret = std::string(real_path);
273 free(real_path);
277 char real_path[PATH_MAX];
278 if (realpath(exe_path, real_path))
279 return std::string(real_path);
319 char real_path[PATH_MAX];
320 if (realpath(exe_path, real_path))
321 return std::string(real_path);
1316 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest,
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinkerDeclContext.h48 sys::fs::real_path(ParentPath, RealPath); in resolve()
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp465 const path real_path(__read_symlink(existing_symlink, ec)); in __copy_symlink() local
471 if (is_directory(real_path, local_ec)) in __copy_symlink()
472 __create_directory_symlink(real_path, new_symlink, ec); in __copy_symlink()
475 __create_symlink(real_path, new_symlink, ec); in __copy_symlink()
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DSupportHelpers.h129 EC = llvm::sys::fs::real_path(UnresolvedPath, Path);
/freebsd/contrib/llvm-project/lld/MachO/
H A DDriverUtils.cpp230 if (fs::real_path(path, realPathBuf)) in realPathIfDifferent()
H A DInputFiles.cpp1624 fs::real_path(umbrella->getName(), newPath); in findDylib()
1632 fs::real_path(umbrella->getName(), newPath); in findDylib()
1643 fs::real_path(umbrella->getName(), newPath); in findDylib()
H A DDriver.cpp132 if (!fs::real_path(symlink, location)) { in findFramework()
1647 if (!fs::real_path(config->osoPrefix, expanded, in link()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp243 if (llvm::sys::fs::real_path(llvm::AIXSystemAssemblerPath, AssemblerPath, in runAIXSystemAssembler()
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc160 sys::fs::real_path(PathNameUTF8, RealPath);
1464 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest,
1474 return real_path(Storage, dest, false);
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h342 LLVM_ABI std::error_code real_path(const Twine &path,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp470 if (sys::fs::real_path(Filename, RealPath)) { in isFunctionInstrumented()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp212 sys::fs::real_path(ParentPath, RealPath); in getFileName()