Searched refs:real_path (Results 1 - 25 of 34) sorted by relevance

12

/netbsd-current/usr.sbin/sysinst/
H A Dtarget.c294 static char real_path[MAXPATHLEN]; local
306 snprintf(real_path, sizeof(real_path), "%s%s", prefix, suffix);
308 snprintf(real_path, sizeof(real_path), "%s/%s",
310 return (real_path);
409 const char *real_path = target_expand(tgt_path); local
411 return run_program(0, "/bin/cp %s %s", srcpath, real_path);
647 const char *real_path = target_expand(path); local
650 result = !file_mode_match(real_path, mod
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdbsupport/
H A Dpathstuff.cc118 const char *real_path = path_storage.get (); local
119 if (IS_DIR_SEPARATOR (real_path[strlen (real_path) - 1]))
120 result = concat (real_path, base_name, (char *) NULL);
122 result = concat (real_path, SLASH_STRING, base_name, (char *) NULL);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DModuleDependencyCollector.cpp115 if (llvm::sys::fs::real_path(Path, TmpDest))
125 if (!llvm::sys::fs::real_path(UpperDest, RealDest) && Path.equals(RealDest))
/netbsd-current/external/apache2/llvm/dist/llvm/utils/lit/lit/
H A Ddiscovery.py73 real_path = os.path.realpath(path)
74 res = cache.get(real_path)
76 cache[real_path] = res = search1(path)
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dsymfile-debug.c165 (const char *name, const char *real_path,
173 real_path ? real_path : NULL,
185 if (real_path != nullptr && IS_ABSOLUTE_PATH (filename)
186 && IS_ABSOLUTE_PATH (real_path))
187 return filename_cmp (filename, real_path) == 0;
198 bool result = !iterate_over_some_symtabs (name, real_path,
163 map_symtabs_matching_filename(const char *name, const char *real_path, gdb::function_view<bool (symtab *)> callback) argument
H A Dauto-load.c214 gdb::unique_xmalloc_ptr<char> real_path = gdb_realpath (expanded.get ()); member in class:gdb
232 if (strcmp (real_path.get (), in_vec.get ()) != 0)
235 real_path.get ());
237 auto_load_safe_path_vec.push_back (std::move (real_path));
H A Dobjfiles.h516 (const char *name, const char *real_path,
H A Dsymtab.c543 const char *real_path,
577 if (real_path != NULL)
581 gdb_assert (IS_ABSOLUTE_PATH (real_path));
586 if (FILENAME_CMP (real_path, fullname) == 0)
610 gdb::unique_xmalloc_ptr<char> real_path; member in class:gdb
616 real_path = gdb_realpath (name);
617 gdb_assert (IS_ABSOLUTE_PATH (real_path.get ()));
622 if (iterate_over_some_symtabs (name, real_path.get (),
633 if (objfile->map_symtabs_matching_filename (name, real_path.get (),
542 iterate_over_some_symtabs(const char *name, const char *real_path, struct compunit_symtab *first, struct compunit_symtab *after_last, gdb::function_view<bool (symtab *)> callback) argument
H A Dwindows-nat.c2515 wchar_t real_path[__PMAX]; local
2577 if (cygwin_conv_path (CCP_POSIX_TO_WIN_W, exec_file, real_path,
2580 toexec = real_path;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DPath.inc266 if (char *real_path = realpath(exe_path, NULL)) {
267 std::string ret = std::string(real_path);
268 free(real_path);
272 char real_path[PATH_MAX];
273 if (realpath(exe_path, real_path))
274 return std::string(real_path);
295 char real_path[PATH_MAX];
296 if (realpath(exe_path, real_path))
297 return std::string(real_path);
1268 std::error_code real_path(cons
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DFileCollector.cpp38 if (sys::fs::real_path(Path, TmpDest))
44 // sensitive in the absence of real_path, since this is the YAMLVFSWriter
47 if (!sys::fs::real_path(UpperDest, RealDest) && Path.equals(RealDest))
62 // Use real_path to fix any symbolic link component present in the directory
70 if (sys::fs::real_path(Directory, RealPath))
H A DVirtualFileSystem.cpp248 if (llvm::sys::fs::real_path(PWD, RealPWD))
328 if (auto Err = llvm::sys::fs::real_path(Absolute, Resolved))
343 return llvm::sys::fs::real_path(adjustPath(Path, Storage), Output);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dsymfile-debug.c121 (struct objfile *objfile, const char *name, const char *real_path,
130 real_path ? real_path : NULL,
134 (objfile, name, real_path, callback));
119 debug_qf_map_symtabs_matching_filename(struct objfile *objfile, const char *name, const char *real_path, gdb::function_view<bool (symtab *)> callback) argument
H A Dpsymtab.c126 const char *real_path,
144 return iterate_over_some_symtabs (name, real_path, objfile->compunit_symtabs,
155 const char *real_path,
171 if (partial_map_expand_apply (objfile, name, real_path,
185 if (partial_map_expand_apply (objfile, name, real_path,
193 if (real_path != NULL)
195 gdb_assert (IS_ABSOLUTE_PATH (real_path));
197 if (filename_cmp (psymtab_to_fullname (pst), real_path) == 0)
199 if (partial_map_expand_apply (objfile, name, real_path,
122 partial_map_expand_apply(struct objfile *objfile, const char *name, const char *real_path, struct partial_symtab *pst, gdb::function_view<bool (symtab *)> callback) argument
150 psym_map_symtabs_matching_filename(struct objfile *objfile, const char *name, const char *real_path, gdb::function_view<bool (symtab *)> callback) argument
H A Dauto-load.c215 gdb::unique_xmalloc_ptr<char> real_path = gdb_realpath (expanded.get ()); member in class:gdb
236 if (strcmp (real_path.get (), in_vec.get ()) != 0)
241 real_path.get ());
243 auto_load_safe_path_vec.push_back (std::move (real_path));
H A Dsymfile.h174 (struct objfile *objfile, const char *name, const char *real_path,
H A Dsymtab.c467 const char *real_path,
501 if (real_path != NULL)
505 gdb_assert (IS_ABSOLUTE_PATH (real_path));
510 if (FILENAME_CMP (real_path, fullname) == 0)
534 gdb::unique_xmalloc_ptr<char> real_path; member in class:gdb
540 real_path = gdb_realpath (name);
541 gdb_assert (IS_ABSOLUTE_PATH (real_path.get ()));
546 if (iterate_over_some_symtabs (name, real_path.get (),
560 real_path.get (),
466 iterate_over_some_symtabs(const char *name, const char *real_path, struct compunit_symtab *first, struct compunit_symtab *after_last, gdb::function_view<bool (symtab *)> callback) argument
H A Dwindows-nat.c2702 cygwin_buf_t real_path[__PMAX]; local
2762 if (cygwin_conv_path (CCP_POSIX_TO_WIN_W, exec_file, real_path,
2765 toexec = real_path;
/netbsd-current/external/gpl3/gdb/dist/gdbsupport/
H A Dpathstuff.cc121 const char *real_path = path_storage.get (); local
122 return path_join (real_path, base_name);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h44 sys::fs::real_path(ParentPath, RealPath);
/netbsd-current/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DCFBundle.cpp122 sys::fs::real_path(Path, RealPath, /*expand_tilde*/ true);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Testing/Support/
H A DSupportHelpers.h129 EC = llvm::sys::fs::real_path(UnresolvedPath, Path);
/netbsd-current/external/gpl3/gdb/dist/gdbserver/
H A Dwin32-low.cc525 char real_path[PATH_MAX]; local
555 cygwin_conv_path (CCP_POSIX_TO_WIN_A, program, real_path, PATH_MAX);
556 program = real_path;
/netbsd-current/external/gpl3/gdb.old/dist/gdbserver/
H A Dwin32-low.cc693 char real_path[PATH_MAX]; local
723 cygwin_conv_path (CCP_POSIX_TO_WIN_A, program, real_path, PATH_MAX);
724 program = real_path;
/netbsd-current/external/apache2/llvm/dist/libcxx/src/filesystem/
H A Doperations.cpp985 const path real_path(__read_symlink(existing_symlink, ec));
991 if (is_directory(real_path, local_ec))
992 __create_directory_symlink(real_path, new_symlink, ec);
995 __create_symlink(real_path, new_symlink, ec);

Completed in 588 milliseconds

12