Searched refs:realpath (Results 1 - 25 of 102) sorted by relevance

12345

/freebsd-10.3-release/bin/realpath/
H A DMakefile1 # $FreeBSD: releng/10.3/bin/realpath/Makefile 90523 2002-02-11 07:32:17Z mike $
3 PROG= realpath
H A Drealpath.c31 __FBSDID("$FreeBSD: releng/10.3/bin/realpath/realpath.c 223372 2011-06-21 19:34:57Z ru $");
66 if ((p = realpath(path, buf)) == NULL) {
80 (void)fprintf(stderr, "usage: realpath [-q] [path ...]\n");
/freebsd-10.3-release/contrib/ldns/
H A Dfreebsd-configure.sh8 ldns=$(dirname $(realpath $0))
/freebsd-10.3-release/contrib/unbound/
H A Dfreebsd-configure.sh13 unbound=$(dirname $(realpath $0))
16 ldnssrc=$(realpath $unbound/../ldns)
20 ldnsbld=$(realpath $unbound/../../lib/libldns)
23 ldnsobj=$(realpath $(make -C$ldnsbld -V.OBJDIR))
/freebsd-10.3-release/contrib/gcclibs/libiberty/
H A Dlrealpath.c1 /* 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
/freebsd-10.3-release/contrib/binutils/libiberty/
H A Dlrealpath.c1 /* 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
/freebsd-10.3-release/tests/sys/acl/
H A D01.sh53 TESTDIR=$(dirname $(realpath $0))
H A D04.sh45 TESTDIR=$(dirname $(realpath $0))
H A D00.sh51 TESTDIR=$(dirname $(realpath $0))
H A D02.sh51 TESTDIR=$(dirname $(realpath $0))
H A D03.sh48 TESTDIR=$(dirname $(realpath $0))
/freebsd-10.3-release/contrib/netbsd-tests/lib/libc/gen/
H A Dt_realpath.c67 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);
/freebsd-10.3-release/contrib/binutils/ld/
H A Dsysdep.h72 # define REALPATH(a,b) realpath (a, b)
/freebsd-10.3-release/bin/
H A DMakefile32 realpath \
/freebsd-10.3-release/etc/rc.d/
H A Dsavecore29 dumpdev=`/bin/realpath /dev/dumpdev`
/freebsd-10.3-release/tools/tools/shlib-compat/
H A Dshlib-compat-dirs.sh34 rorig=`realpath $orig`
35 rnew=`realpath $new`
/freebsd-10.3-release/share/mk/
H A Dbsd.port.subdir.mk16 PORTSDIR!= realpath ${_PORTSDIR}
H A Dbsd.port.mk16 PORTSDIR!= realpath ${_PORTSDIR}
/freebsd-10.3-release/lib/libc/stdlib/
H A DMakefile.inc12 random.c reallocf.c realpath.c remque.c strfmon.c strtoimax.c \
28 realpath.3 strfmon.3 strtod.3 strtol.3 strtonum.3 strtoul.3 system.3 \
/freebsd-10.3-release/crypto/openssh/openbsd-compat/
H A Dopenbsd-compat.h77 # define realpath(x, y) _ssh_compat_realpath(x, y) macro
80 char *realpath(const char *path, char *resolved);
/freebsd-10.3-release/crypto/openssh/regress/
H A Dcheck-perm.c102 if (realpath(name, buf) == NULL) {
103 snprintf(err, errlen, "realpath %s failed: %s", name,
107 if (pw_dir != NULL && realpath(pw_dir, homedir) != NULL)
/freebsd-10.3-release/contrib/openpam/lib/libpam/
H A Dopenpam_check_owner_perms.c111 if (realpath(path, pathbuf) == NULL)
/freebsd-10.3-release/lib/libc/tests/gen/
H A Dftw_test.c86 ATF_REQUIRE_MSG(realpath(template, dir) != NULL,
87 "realpath failed; errno=%d", errno);
/freebsd-10.3-release/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dkernel.c427 char realpath[MAXPATHLEN]; local
450 (void) sprintf(realpath, "%s", path);
453 (void) sprintf(realpath + (dsk - path) + 1, "r%s",
456 (void) sprintf(realpath, "%s", path);
457 if (!(flags & FCREAT) && stat64(realpath, &st) == -1)
468 fd = open64(realpath, flags - FREAD, mode);
476 "%s/%s", vn_dumpdir, basename(realpath));
509 char *realpath = umem_alloc(strlen(path) + 2, UMEM_NOFAIL); local
513 (void) sprintf(realpath, "/%s", path);
516 ret = vn_open(realpath, x
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Support/Unix/
H A DPath.inc193 if (realpath(buf, ret) == NULL)
250 if (realpath(exe_path, link_path))
283 if (realpath(DLInfo.dli_fname, link_path))

Completed in 169 milliseconds

12345