Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Host/posix/
H A DFileSystemPosix.cpp63 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-14.2/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.equals(RealDest)) in isCaseSensitivePath()
/freebsd-14.2/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.equals(RealDest)) in isCaseSensitivePath()
72 if (sys::fs::real_path(Directory, RealPath)) in updateWithRealPath()
H A DVirtualFileSystem.cpp263 else if (llvm::sys::fs::real_path(PWD, RealPWD)) in RealFileSystem()
349 if (auto Err = llvm::sys::fs::real_path(Absolute, Resolved)) in setCurrentWorkingDirectory()
364 return llvm::sys::fs::real_path(adjustPath(Path, Storage), Output); in getRealPath()
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DTildeExpressionResolver.cpp39 return !fs::real_path(Expr, Output, true); in ResolveExact()
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DPPCLinux.cpp27 if (fs::real_path(Linker, Path)) in GlibcSupportsFloat128()
H A DAMDGPU.cpp259 llvm::sys::fs::real_path(D.getClangProgramPath(), RealClangPath); in getInstallationPathCandidates()
H A DCuda.cpp169 llvm::sys::fs::real_path(*ptxas, ptxasAbsolutePath); in CudaInstallationDetector()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc272 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);
1307 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest,
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinkerDeclContext.h47 sys::fs::real_path(ParentPath, RealPath); in resolve()
/freebsd-14.2/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp347 const path real_path(__read_symlink(existing_symlink, ec)); in __copy_symlink() local
353 if (is_directory(real_path, local_ec)) in __copy_symlink()
354 __create_directory_symlink(real_path, new_symlink, ec); in __copy_symlink()
357 __create_symlink(real_path, new_symlink, ec); in __copy_symlink()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DSupportHelpers.h129 EC = llvm::sys::fs::real_path(UnresolvedPath, Path);
/freebsd-14.2/contrib/llvm-project/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp257 if (llvm::sys::fs::real_path(llvm::AIXSystemAssemblerPath, AssemblerPath, in runAIXSystemAssembler()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc159 sys::fs::real_path(PathNameUTF8, RealPath);
1432 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest,
1442 return real_path(Storage, dest, false);
/freebsd-14.2/contrib/llvm-project/lld/MachO/
H A DDriver.cpp134 if (!fs::real_path(symlink, location)) { in findFramework()
1511 if (!fs::real_path(config->osoPrefix, expanded, in link()
H A DInputFiles.cpp1620 fs::real_path(umbrella->getName(), newPath); in findDylib()
1628 fs::real_path(umbrella->getName(), newPath); in findDylib()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h344 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp488 if (sys::fs::real_path(Filename, RealPath)) { in isFunctionInstrumented()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp215 sys::fs::real_path(ParentPath, RealPath); in getFileName()
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp3006 llvm::sys::fs::real_path(IA->getInputArg().getValue(), RealPath, in addDeviceDependences()