| /llvm-project-15.0.7/lldb/source/Host/posix/ |
| H A D | FileSystemPosix.cpp | 62 char real_path[PATH_MAX + 1]; in ResolveSymbolicLink() local 63 if (realpath(resolved_path, real_path) == nullptr) { in ResolveSymbolicLink() 69 dst = FileSpec(real_path); in ResolveSymbolicLink()
|
| /llvm-project-15.0.7/llvm/utils/lit/lit/ |
| H A D | discovery.py | 72 real_path = os.path.realpath(path) 73 res = cache.get(real_path) 75 cache[real_path] = res = search1(path)
|
| /llvm-project-15.0.7/openmp/runtime/tools/lib/ |
| H A D | tools.pm | 835 sub real_path($) { subroutine 838 my $real_path; 851 $real_path = Cwd::abs_path( $orig_path ); 854 $real_path = File::Spec->catfile( $real_path, $file ); 857 if ( not defined( $real_path ) or $message ne "" ) { 861 return $real_path;
|
| /llvm-project-15.0.7/clang/lib/Frontend/ |
| H A D | ModuleDependencyCollector.cpp | 115 if (llvm::sys::fs::real_path(Path, TmpDest)) in isCaseSensitivePath() 125 if (!llvm::sys::fs::real_path(UpperDest, RealDest) && Path.equals(RealDest)) in isCaseSensitivePath()
|
| /llvm-project-15.0.7/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.equals(RealDest)) in isCaseSensitivePath() 70 if (sys::fs::real_path(Directory, RealPath)) in updateWithRealPath()
|
| H A D | VirtualFileSystem.cpp | 263 if (llvm::sys::fs::real_path(PWD, RealPWD)) in RealFileSystem() 347 if (auto Err = llvm::sys::fs::real_path(Absolute, Resolved)) in setCurrentWorkingDirectory() 362 return llvm::sys::fs::real_path(adjustPath(Path, Storage), Output); in getRealPath()
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | TildeExpressionResolver.cpp | 39 return !fs::real_path(Expr, Output, true); in ResolveExact()
|
| /llvm-project-15.0.7/clang/lib/Driver/ToolChains/ |
| H A D | PPCLinux.cpp | 27 if (fs::real_path(Linker, Path)) in GlibcSupportsFloat128()
|
| H A D | Cuda.cpp | 154 llvm::sys::fs::real_path(*ptxas, ptxasAbsolutePath); in CudaInstallationDetector()
|
| H A D | AMDGPU.cpp | 256 llvm::sys::fs::real_path(D.getClangProgramPath(), RealClangPath); in getInstallationPathCandidates()
|
| /llvm-project-15.0.7/llvm/tools/dsymutil/ |
| H A D | CFBundle.cpp | 122 sys::fs::real_path(Path, RealPath, /*expand_tilde*/ true); in SetFromPath()
|
| /llvm-project-15.0.7/llvm/lib/Support/Unix/ |
| H A D | Path.inc | 276 if (char *real_path = realpath(exe_path, nullptr)) { 277 std::string ret = std::string(real_path); 278 free(real_path); 282 char real_path[PATH_MAX]; 283 if (realpath(exe_path, real_path)) 284 return std::string(real_path); 319 char real_path[PATH_MAX]; 320 if (realpath(exe_path, real_path)) 321 return std::string(real_path); 1306 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest, [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/DWARFLinker/ |
| H A D | DWARFLinkerDeclContext.h | 45 sys::fs::real_path(ParentPath, RealPath); in resolve()
|
| /llvm-project-15.0.7/llvm/include/llvm/Testing/Support/ |
| H A D | SupportHelpers.h | 129 EC = llvm::sys::fs::real_path(UnresolvedPath, Path);
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | CompileCommands.cpp | 80 if (llvm::sys::fs::real_path(Path, Resolved)) { in resolve() 180 if (!llvm::sys::fs::real_path(Driver, Resolved)) in resolveDriver()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/unittests/ |
| H A D | CompileCommandsTests.cpp | 129 ASSERT_THAT(llvm::sys::fs::real_path(TempDir.str(), TempDir), ok()); in TEST()
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | Path.cpp | 751 ASSERT_NO_ERROR(fs::real_path(TestDirectory, RealBase)); in TEST_F() 755 ASSERT_NO_ERROR(fs::real_path( in TEST_F() 767 ASSERT_NO_ERROR(fs::real_path(HomeDir, Expected)); in TEST_F() 769 ASSERT_NO_ERROR(fs::real_path("~", Actual, true)); in TEST_F() 771 ASSERT_NO_ERROR(fs::real_path("~/", Actual, true)); in TEST_F() 814 ASSERT_NO_ERROR(fs::real_path(Twine(TestDirectory) + "/noreadperm", Expanded, in TEST_F()
|
| /llvm-project-15.0.7/libcxx/src/filesystem/ |
| H A D | operations.cpp | 988 const path real_path(__read_symlink(existing_symlink, ec)); in __copy_symlink() local 994 if (is_directory(real_path, local_ec)) in __copy_symlink() 995 __create_directory_symlink(real_path, new_symlink, ec); in __copy_symlink() 998 __create_symlink(real_path, new_symlink, ec); in __copy_symlink()
|
| /llvm-project-15.0.7/lld/MachO/ |
| H A D | Driver.cpp | 128 if (!fs::real_path(symlink, location)) { in findFramework() 1241 if (!fs::real_path(config->osoPrefix, expanded, in link()
|
| H A D | InputFiles.cpp | 1686 fs::real_path(umbrella->getName(), newPath); in findDylib() 1694 fs::real_path(umbrella->getName(), newPath); in findDylib()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/tool/ |
| H A D | ClangdMain.cpp | 977 llvm::sys::fs::real_path(CheckFile, Path, /*expand_tilde=*/true)) { in main()
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | FileSystem.h | 346 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &output,
|
| /llvm-project-15.0.7/llvm/lib/Support/Windows/ |
| H A D | Path.inc | 1397 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest, 1407 return real_path(Storage, dest, false);
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PECOFF/ |
| H A D | ObjectFilePECOFF.cpp | 1089 if (!llvm::sys::fs::real_path(dll_specs.GetPath(), dll_fullpath)) in ParseDependentModules()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/ |
| H A D | GCOVProfiling.cpp | 487 if (sys::fs::real_path(Filename, RealPath)) { in isFunctionInstrumented()
|