HomeSort by: relevance | last modified time | path
    Searched refs:realpath (Results 1 - 25 of 253) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/usr.bin/realpath/
Makefile 2 # $FreeBSD: head/bin/realpath/Makefile 298107 2016-04-16 07:45:30Z gjb $
4 PROG= realpath
realpath.c 1 /* $NetBSD: realpath.c,v 1.3 2023/05/25 17:24:17 kre Exp $ */
36 __FBSDID("$FreeBSD: head/bin/realpath/realpath.c 326025 2017-11-20 19:49:47Z pfg $");
38 __RCSID("$NetBSD: realpath.c,v 1.3 2023/05/25 17:24:17 kre Exp $");
115 if ((p = realpath(path, buf)) != NULL) {
134 p = realpath(".", buf);
155 while (realpath(*q ? q : "/", r) != NULL) {
210 s = realpath(q, r);
  /src/tests/usr.bin/realpath/
Makefile 5 TESTSDIR= ${TESTSBASE}/usr.bin/realpath
  /src/external/gpl3/gdb/lib/libgdb/
common-agent.c 15 * realpath(3) so use that.
20 return realpath(fn, NULL);
  /src/external/gpl3/gdb.old/lib/libgdb/
common-agent.c 15 * realpath(3) so use that.
20 return realpath(fn, NULL);
  /src/external/bsd/ntp/dist/sntp/m4/
realpath.m4 8 # This macro defines HAVE_FUNC_REALPATH if we have a realpath()
25 AC_MSG_CHECKING([for a POSIX-2008 compliant realpath()])
34 int main() { return (NULL == realpath(".", NULL)); }
44 [Define to 1 if we have realpath() that supports NULL as the 2nd argument])
  /src/sbin/mount/
pathadj.c 40 if (realpath(input, adjusted) == NULL)
41 err(EXIT_FAILURE, "realpath '%s' failed", input);
  /src/crypto/external/bsd/openssh/bin/sftp-server/
Makefile 6 SRCS= sftp-server.c sftp-common.c sftp-server-main.c sftp-realpath.c
  /src/external/apache2/llvm/dist/clang/tools/scan-build-py/bin/
analyze-build 10 this_dir = os.path.dirname(os.path.realpath(__file__))
analyze-c++ 9 this_dir = os.path.dirname(os.path.realpath(__file__))
analyze-cc 9 this_dir = os.path.dirname(os.path.realpath(__file__))
intercept-build 10 this_dir = os.path.dirname(os.path.realpath(__file__))
intercept-c++ 9 this_dir = os.path.dirname(os.path.realpath(__file__))
intercept-cc 9 this_dir = os.path.dirname(os.path.realpath(__file__))
scan-build 10 this_dir = os.path.dirname(os.path.realpath(__file__))
  /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/config-map-discovery/
driver.py 6 main_config = os.path.realpath(main_config)
  /src/external/mit/libuv/dist/include/uv/
darwin.h 47 char* realpath; \
  /src/external/apache2/llvm/dist/llvm/utils/llvm-lit/
llvm-lit.in 11 source_dir = os.path.realpath(source_dir)
  /src/external/gpl3/gcc.old/dist/libiberty/
lrealpath.c 1 /* Libiberty realpath. Like realpath, but more consistent behavior.
68 /* cygwin has realpath, so it won't get here. */
79 path. Use that and realpath() to canonicalize the name. This is
81 upper bound, you want to avoid realpath() at all costs. */
85 const char *rp = realpath (filename, buf);
110 to realpath() (it could always overflow). On those systems, we
123 rp = realpath (filename, buf);
131 /* The MS Windows method. If we don't have realpath, we assume we
  /src/tests/kernel/
t_magic_symlinks.sh 219 # realpath(1)
221 atf_test_case realpath cleanup
224 atf_set "descr" "Check that realpath(1) agrees with the " \
231 realpath "$tmpdir/link"
235 atf_fail "realpath does not handle magic symlinks properly"
253 atf_add_test_case realpath
  /src/tests/lib/libc/gen/
t_realpath.c 67 atf_tc_set_md_var(tc, "descr", "A basic test of realpath(3)");
80 ptr = realpath(paths[i].path, buf);
86 atf_tc_fail("realpath failed for '%s'", paths[i].path);
97 atf_tc_set_md_var(tc, "descr", "Test huge path with realpath(3)");
107 ATF_CHECK(realpath(buffer, result) != NULL);
115 atf_tc_set_md_var(tc, "descr", "Test symbolic link with realpath(3)");
128 (void)strlcat(path, "/realpath", sizeof(path));
137 ATF_REQUIRE(realpath(slnk, resb) != NULL);
  /src/tests/usr.bin/
Makefile 12 realpath rump_server \
  /src/external/gpl3/binutils/dist/ld/
sysdep.h 45 # define REALPATH(a,b) realpath (a, b)
47 # define REALPATH(a,b) NULL
  /src/external/gpl3/binutils.old/dist/ld/
sysdep.h 45 # define REALPATH(a,b) realpath (a, b)
47 # define REALPATH(a,b) NULL
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/
stdlib.d 290 char* realpath(const scope char*, char*);
332 char* realpath(const scope char*, char*);
383 char* realpath(const scope char*, char*);
424 char* realpath(const scope char*, char*);
465 char* realpath(const scope char*, char*);
506 char* realpath(const scope char*, char*);
547 char* realpath(const scope char*, char*);
570 char* realpath(const scope char*, char*);
600 char* realpath(const scope char*, char*);
652 char* realpath(const scope char*, char*)
    [all...]

Completed in 35 milliseconds

1 2 3 4 5 6 7 8 91011