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

1 2

  /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
t_realpath.sh 32 # Note that the empty line calls realpath with no file arg
222 GOT=$(realpath $opt -- ${FILE:+"${FILE}"})
302 GOT=$(realpath $opt -- "${FILE}" 2>StdErr)
354 atf_set descr "Test realpath (with -e) cases which should work"
374 atf_set descr "Test realpath (with -E) cases which should work"
395 atf_set descr "Test realpath (without -e or -E) cases which should work"
399 # Our default for realpath is -E, so the -E tests should work
417 atf_set descr "Test realpath -e cases which should not work"
436 atf_set descr "Test realpath -e cases which should not work"
457 atf_set descr "Test realpath cases which should not work (w/o -[eE])
    [all...]
  /src/sbin/mount/
pathadj.c 40 if (realpath(input, adjusted) == NULL)
41 err(EXIT_FAILURE, "realpath '%s' failed", input);
mount.c 230 canonical_path = realpath(*argv, canonical_path_buf);
383 if (realpath(name, mntpath) == NULL) {
384 warn("realpath `%s'", name);
  /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/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/usr.bin/
Makefile 11 netpgpverify patch pkill pr printf pwhash realpath rump_server \
  /src/lib/libc/gen/
getcwd.c 60 __weak_alias(realpath,_realpath)
64 * char *realpath(const char *path, char *resolved);
71 realpath(const char * __restrict path, char * __restrict resolved)
Makefile.inc 85 raise.3 randomid.3 realpath.3 scandir.3 setjmp.3 setmode.3 \
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/
dd_interceptors.cc 226 INTERCEPTOR(char*, realpath, const char *path, char *resolved_path) {
228 return REAL(realpath)(path, resolved_path);
322 INTERCEPT_FUNCTION(realpath);
  /src/usr.bin/
Makefile 25 realpath renice resize rev revoke rfcomm_sppd rlogin rpcgen rpcinfo rs rsh \
  /src/usr.sbin/veriexecgen/
veriexecgen.c 221 if (realpath(file, e->filename) == NULL) {
259 if (realpath(file->fts_accpath, e->filename) == NULL) {
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/symbolizer/
sanitizer_wrappers.cc 173 LLVM_SYMBOLIZER_INTERCEPTOR2(realpath, char *(const char *, char *))
  /src/include/
stdlib.h 198 char *realpath(const char * __restrict, char * __restrict);
  /src/usr.bin/mail/
fio.c 411 if (realpath(folder, res) == NULL)
cmd2.c 590 if (realpath(fname, canon_name) == NULL) {
591 warn("realpath: %s", filename);
lex.c 150 /* Don't realpath(3) if it's only an update request */
151 if (name != NULL && realpath(name, mailname) == NULL) {
  /src/usr.sbin/inetd/
parse.c 1193 new_file.abs = realpath(CONFIG, NULL);
1290 glob_path = realpath(tmp, NULL);
1314 char *abs_path = realpath(glob_path, NULL);
  /src/usr.bin/xinstall/
xinstall.c 602 if (realpath(from_name, src) == NULL)
603 err(EXIT_FAILURE, "%s: realpath", from_name);
614 if (realpath(from_name, src) == NULL)
615 err(EXIT_FAILURE, "%s: realpath", from_name);
619 * so use realpath to resolve only the directory.
622 if (realpath(cp, dst) == NULL)
623 err(EXIT_FAILURE, "%s: realpath", cp);
  /src/sbin/efi/
gptsubr.c 592 rname = realpath(fname, NULL);
  /src/sbin/umount/
umount.c 213 if (realpath(name, rname) != NULL) {
  /src/bin/pax/
tables.c 1153 if ((rp = realpath(name, realname)) == NULL) {
ar_subs.c 168 if (realpath(arcn->name, buf) == NULL) {

Completed in 24 milliseconds

1 2