Home
last modified time | relevance | path

Searched refs:realpath (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/netbsd-src/external/gpl2/gmake/dist/tests/scripts/functions/
H A Drealpath2 $description = "Test the realpath functions.";
7 ifneq ($(realpath .),$(CURDIR))
11 ifneq ($(realpath ./),$(CURDIR))
15 ifneq ($(realpath .///),$(CURDIR))
19 ifneq ($(realpath /),/)
23 ifneq ($(realpath /.),/)
27 ifneq ($(realpath /./),/)
31 ifneq ($(realpath /.///),/)
35 ifneq ($(realpath /..),/)
39 ifneq ($(realpath /../),/)
[all …]
H A Dabspath7 ifneq ($(realpath $(abspath .)),$(CURDIR))
8 $(warning .: abs="$(abspath .)" real="$(realpath $(abspath .))" curdir="$(CURDIR)")
11 ifneq ($(realpath $(abspath ./)),$(CURDIR))
12 $(warning ./: abs="$(abspath ./)" real="$(realpath $(abspath ./))" curdir="$(CURDIR)")
15 ifneq ($(realpath $(abspath .///)),$(CURDIR))
16 $(warning .///: abs="$(abspath .///)" real="$(realpath $(abspath .///))" curdir="$(CURDIR)")
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/m4/
H A Dcanonicalize.m410 # not provide or fix realpath.
28 # Provides canonicalize_file_name and realpath.
76 # Check whether realpath works. Assume that if a platform has both
77 # realpath and canonicalize_file_name, but the former is broken, then
81 AC_CHECK_FUNCS_ONCE([realpath lstat])
83 AC_CACHE_CHECK([whether realpath works], [gl_cv_func_realpath_works], [
101 char *name = realpath ("conftest.a", NULL);
108 char *name = realpath ("conftest.b/../conftest.a", NULL);
116 char *name = realpath ("conftest.l/../conftest.a", NULL);
124 char *name = realpath ("conftest.a/", NULL);
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/
H A Dstdlib.d332 char* realpath(const scope char*, char*); in version()
383 char* realpath(const scope char*, char*); in version()
424 char* realpath(const scope char*, char*); in version()
465 char* realpath(const scope char*, char*); in version()
506 char* realpath(const scope char*, char*); in version()
547 char* realpath(const scope char*, char*); in version()
570 char* realpath(const scope char*, char*); in version()
600 char* realpath(const scope char*, char*); in version()
652 char* realpath(const scope char*, char*); in version()
700 char* realpath(const scope char*, char*); in version()
/netbsd-src/external/mit/libuv/dist/src/unix/
H A Dfsevents.c273 if (memcmp(path, handle->realpath, handle->realpath_len) != 0) in uv__fsevents_event_cb()
276 if (!(handle->realpath_len == 1 && handle->realpath[0] == '/')) { in uv__fsevents_event_cb()
462 assert(curr->realpath != NULL); in uv__fsevents_reschedule()
464 pCFStringCreateWithFileSystemRepresentation(NULL, curr->realpath); in uv__fsevents_reschedule()
815 handle->realpath = realpath(handle->path, NULL); in uv__fsevents_init()
816 if (handle->realpath == NULL) in uv__fsevents_init()
818 handle->realpath_len = strlen(handle->realpath); in uv__fsevents_init()
867 uv__free(handle->realpath); in uv__fsevents_init()
868 handle->realpath = NULL; in uv__fsevents_init()
909 uv__free(handle->realpath); in uv__fsevents_close()
[all …]
/netbsd-src/usr.bin/realpath/
H A Drealpath.c115 if ((p = realpath(path, buf)) != NULL) { in process()
134 p = realpath(".", buf); in process()
155 while (realpath(*q ? q : "/", r) != NULL) { in process()
210 s = realpath(q, r); in process()
/netbsd-src/tests/lib/libc/gen/
H A Dt_realpath.c80 ptr = realpath(paths[i].path, buf); in ATF_TC_BODY()
107 ATF_CHECK(realpath(buffer, result) != NULL); in ATF_TC_BODY()
137 ATF_REQUIRE(realpath(slnk, resb) != NULL); in ATF_TC_BODY()
/netbsd-src/external/cddl/osnet/dist/lib/libzpool/common/
H A Dkernel.c440 char realpath[MAXPATHLEN]; in vn_open() local
482 (void) sprintf(realpath, "%s", path); in vn_open()
485 (void) sprintf(realpath + (dsk - path) + 1, "r%s", in vn_open()
488 (void) sprintf(realpath, "%s", path); in vn_open()
489 if (!(flags & FCREAT) && stat64(realpath, &st) == -1) in vn_open()
500 fd = open64(realpath, flags - FREAD, mode); in vn_open()
508 "%s/%s", vn_dumpdir, basename(realpath)); in vn_open()
541 char *realpath = umem_alloc(strlen(path) + 2, UMEM_NOFAIL); in vn_openat() local
545 (void) sprintf(realpath, "/%s", path); in vn_openat()
548 ret = vn_open(realpath, x1, flags, mode, vpp, x2, x3); in vn_openat()
[all …]
/netbsd-src/tests/kernel/
H A Dt_magic_symlinks.sh221 atf_test_case realpath cleanup
231 realpath "$tmpdir/link"
253 atf_add_test_case realpath
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DApplication.cc91 char *exe_name = realpath (_name, NULL); in get_realpath()
105 exe_name = realpath (nm, NULL); in get_realpath()
137 run_dir = realpath (prog_name, NULL); in set_run_dir()
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A DApplication.cc91 char *exe_name = realpath (_name, NULL); in get_realpath()
104 exe_name = realpath (nm, NULL); in get_realpath()
136 run_dir = realpath (prog_name, NULL); in set_run_dir()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/lit/
H A Ddiscovery.py55 cfgpath = os.path.realpath(cfgpath)
67 source_root = os.path.realpath(cfg.test_source_root or path)
68 exec_root = os.path.realpath(cfg.test_exec_root or path)
73 real_path = os.path.realpath(path)
/netbsd-src/external/gpl3/gcc/dist/libiberty/
H A Dlrealpath.c85 const char *rp = realpath (filename, buf); in lrealpath()
123 rp = realpath (filename, buf); in lrealpath()
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/
H A Dlrealpath.c85 const char *rp = realpath (filename, buf); in lrealpath()
123 rp = realpath (filename, buf); in lrealpath()
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/
H A Dlrealpath.c85 const char *rp = realpath (filename, buf); in lrealpath()
123 rp = realpath (filename, buf); in lrealpath()
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/gnulib-m4/
H A Dcanonicalize.m414 AC_DEFINE([realpath], [rpl_realpath], definition
15 [Define to a replacement function name for realpath().])
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-m4/
H A Dcanonicalize.m414 AC_DEFINE([realpath], [rpl_realpath], definition
15 [Define to a replacement function name for realpath().])
/netbsd-src/external/gpl2/gettext/dist/gnulib-local/m4/
H A Dcanonicalize.m414 AC_DEFINE([realpath], [rpl_realpath], definition
15 [Define to a replacement function name for realpath().])
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dd-system.h35 #undef realpath
36 #define realpath(a, b) lrealpath((a)) macro
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dcanonicalize.c24 #undef realpath
321 versioned_symbol (libc, __realpath, realpath, GLIBC_2_3);
337 compat_symbol (libc, __old_realpath, realpath, GLIBC_2_0);
/netbsd-src/external/gpl2/gettext/dist/gnulib-local/lib/
H A Dcanonicalize.c24 #undef realpath
321 versioned_symbol (libc, __realpath, realpath, GLIBC_2_3);
337 compat_symbol (libc, __old_realpath, realpath, GLIBC_2_0);
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
H A Dcanonicalize.c24 #undef realpath
321 versioned_symbol (libc, __realpath, realpath, GLIBC_2_3);
337 compat_symbol (libc, __old_realpath, realpath, GLIBC_2_0);
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/tools/gbench/
H A Dreport.py279 os.path.realpath(__file__)),
307 os.path.realpath(__file__)),
353 os.path.realpath(__file__)),
387 os.path.realpath(__file__)),
455 os.path.realpath(__file__)),
/netbsd-src/tests/usr.bin/realpath/
H A Dt_realpath.sh222 GOT=$(realpath $opt -- ${FILE:+"${FILE}"})
302 GOT=$(realpath $opt -- "${FILE}" 2>StdErr)
503 GOT=$(realpath $opt -- "${FILE}" 2>StdErr)
556 GOT=$(realpath $opt "${FILE}" ${XTRA+"${XTRA}"} 2>StdErr)
632 GOT=$(realpath -e -- "$@" 2>StdErr)
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build/bin/
H A Dscan-build488 my $JS = Cwd::realpath("$RealBin/../share/scan-build/sorttable.js");
498 my $CSS = Cwd::realpath("$RealBin/../share/scan-build/scanview.css");
971 my $ScanView = Cwd::realpath("$RealBin/scan-view");
973 if (! -x $ScanView) { $ScanView = Cwd::realpath("$RealBin/../../scan-view/bin/scan-view"); }
1524 $Clang = Cwd::realpath("$RealBin/bin/clang") if (-f "$RealBin/bin/clang");
1526 $Clang = Cwd::realpath("$RealBin/clang") if (-f "$RealBin/clang");
1534 $Clang = Cwd::realpath("$RealBin/../../bin/clang");
1934 my $AbsRealBin = Cwd::realpath($RealBin);

12345678910>>...12