Searched refs:getcwd (Results 1 - 25 of 119) sorted by relevance

12345

/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dgetcwd.c46 getcwd(char *path, size_t size) function
/freebsd-10.0-release/lib/libc/compat-43/
H A Dgetwd.c47 if ( (p = getcwd(buf, MAXPATHLEN)) )
/freebsd-10.0-release/contrib/groff/src/libs/libgroff/
H A Dgetcwd.c20 /* Partial emulation of getcwd in terms of getwd. */
28 char *getcwd(buf, size) function
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dgetpwd.c45 BSD systems) now provides getcwd as called for by POSIX. Allow for
51 #define getcwd(buf,len) getwd(buf) macro
87 for (s = GUESSPATHLEN; !getcwd (p = XNEWVEC (char, s), s); s *= 2)
120 pwd = getcwd (XNEWVEC (char, MAXPATHLEN + 1), MAXPATHLEN + 1
H A Dgetcwd.c1 /* Emulate getcwd using getwd.
6 @deftypefn Supplemental char* getcwd (char *@var{pathname}, int @var{len})
13 @code{getcwd} will obtain @var{len} bytes of space using
41 getcwd (char *buf, size_t len) function
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Dgetpwd.c45 BSD systems) now provides getcwd as called for by POSIX. Allow for
51 #define getcwd(buf,len) getwd(buf) macro
87 for (s = GUESSPATHLEN; !getcwd (p = XNEWVEC (char, s), s); s *= 2)
120 pwd = getcwd (XNEWVEC (char, MAXPATHLEN + 1), MAXPATHLEN + 1
H A Dgetcwd.c1 /* Emulate getcwd using getwd.
6 @deftypefn Supplemental char* getcwd (char *@var{pathname}, int @var{len})
13 @code{getcwd} will obtain @var{len} bytes of space using
41 getcwd (char *buf, size_t len) function
/freebsd-10.0-release/contrib/gcclibs/libssp/ssp/
H A Dunistd.h46 #undef getcwd macro
74 (char *__buf, size_t __size), getcwd);
77 getcwd (char *__buf, size_t __size) function
/freebsd-10.0-release/crypto/openssl/util/
H A Dmklink.pl24 my $pwd = getcwd();
/freebsd-10.0-release/bin/pwd/
H A Dpwd.c88 (p = getcwd(NULL, 0)) != NULL)
/freebsd-10.0-release/contrib/nvi/ex/
H A Dex_cd.c116 if ((buf = getcwd(NULL, 0)) != NULL) {
/freebsd-10.0-release/tools/regression/bin/pax/
H A Dregress.t27 my $top = getcwd . "/ustar-pathnames-1";
/freebsd-10.0-release/contrib/libarchive/libarchive/test/
H A Dtest_sparse_basic.c73 #define getcwd _getcwd macro
406 cwd = getcwd(NULL, PATH_MAX);/* Solaris getcwd needs the size. */
408 cwd = getcwd(NULL, 0);
/freebsd-10.0-release/usr.sbin/pkg_install/info/
H A Dperform.c102 if (!getcwd(fname, FILENAME_MAX))
103 upchuck("getcwd");
113 if (!getcwd(fname, FILENAME_MAX))
114 upchuck("getcwd");
266 cwd = getcwd(NULL, MAXPATHLEN);
/freebsd-10.0-release/contrib/bmake/
H A Drealpath.c2 /* from: $NetBSD: getcwd.c,v 1.53 2012/06/21 23:29:23 enami Exp $ */
110 if (resolved && getcwd(resolved, MAXPATHLEN) == NULL) {
/freebsd-10.0-release/contrib/gdb/gdb/mi/
H A Dmi-cmd-env.c83 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dopenbsd-compat.h61 char *getcwd(char *pt, size_t size);
H A Drealpath.c71 if (getcwd(resolved, PATH_MAX) == NULL) {
/freebsd-10.0-release/usr.sbin/mtree/
H A Dmtree.c168 if ((cflag || sflag) && !getcwd(fullpath, sizeof(fullpath)))
/freebsd-10.0-release/contrib/atf/atf-run/
H A Dfs.cpp255 cwd.reset(getcwd(NULL, 0));
257 cwd.reset(getcwd(NULL, MAXPATHLEN));
261 "getcwd() failed", errno);
/freebsd-10.0-release/contrib/tcsh/
H A Dtc.decls.h193 # undef getcwd macro
194 # define getcwd(a, b) xgetcwd(a, b) macro
/freebsd-10.0-release/contrib/amd/amq/
H A Dpawd.c228 char *wd = getcwd(path, MAXPATHLEN);
/freebsd-10.0-release/contrib/apr/file_io/unix/
H A Dfilepath.c42 if (!getcwd(path, sizeof(path))) {
/freebsd-10.0-release/contrib/groff/src/include/
H A Dnonposix.h84 # define getcwd(b,s) _getcwd2(b,s) macro
/freebsd-10.0-release/contrib/less/
H A Dlsystem.c81 getcwd(cwd, FILENAME_MAX);

Completed in 322 milliseconds

12345