Home
last modified time | relevance | path

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

/freebsd/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/contrib/llvm-project/clang/lib/Frontend/
H A DModuleDependencyCollector.cpp98 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 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()
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 DTildeExpressionResolver.cpp39 return !fs::real_path(Expr, Output, true); in ResolveExact()
/freebsd/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);
1315 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/libcxx/src/filesystem/
H A Doperations.cpp344 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 DSupportHelpers.h129 EC = llvm::sys::fs::real_path(UnresolvedPath, Path);
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp256 if (llvm::sys::fs::real_path(llvm::AIXSystemAssemblerPath, AssemblerPath, in runAIXSystemAssembler()
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc159 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 DFileSystem.h343 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
/freebsd/contrib/llvm-project/lld/MachO/
H A DDriver.cpp135 if (!fs::real_path(symlink, location)) { in findFramework()
1575 if (!fs::real_path(config->osoPrefix, expanded, in link()
H A DInputFiles.cpp1621 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 DCuda.cpp173 llvm::sys::fs::real_path(*ptxas, ptxasAbsolutePath); in CudaInstallationDetector()
H A DAMDGPU.cpp260 llvm::sys::fs::real_path(D.getClangProgramPath(), RealClangPath); in getInstallationPathCandidates()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp487 // 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 DDWARFLinkerCompileUnit.cpp215 sys::fs::real_path(ParentPath, RealPath); in getFileName()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp3043 llvm::sys::fs::real_path(IA->getInputArg().getValue(), RealPath, in addDeviceDependences()