Searched refs:pathconf (Results 1 - 25 of 36) sorted by relevance

12

/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dpathmax.h30 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 \
31 : pathconf ("/", _PC_PATH_MAX))
H A Dbackupfile.c53 # define pathconf(file, option) (errno = -1) macro
109 /* The new base name is long enough to require a pathconf check. */
113 invoke pathconf on the directory, and then restore the buffer. */
118 name_max = pathconf (file, _PC_NAME_MAX);
H A Dcanonicalize-lgpl.c129 path_max = pathconf (name, _PC_PATH_MAX);
/macosx-10.10.1/libiconv-42/libiconv/srclib/
H A Dpathmax.h35 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 \
36 : pathconf ("/", _PC_PATH_MAX))
H A Dcanonicalize.c132 path_max = pathconf (name, _PC_PATH_MAX);
/macosx-10.10.1/text_cmds-88/sort/
H A Dpathmax.h30 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 \
31 : pathconf ("/", _PC_PATH_MAX))
/macosx-10.10.1/groff-38/groff/src/libs/libgroff/
H A Dmaxpathname.cpp21 /* path_name_max(dir) does the same as pathconf(dir, _PC_PATH_MAX) */
35 return pathconf("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf("/",_PC_PATH_MAX);
H A Dmaxfilename.cpp21 /* file_name_max(dir) does the same as pathconf(dir, _PC_NAME_MAX) */
35 return pathconf(fname, _PC_NAME_MAX);
/macosx-10.10.1/gpatch-3/patch/
H A Daddext.c72 /* The new base name is long enough to require a pathconf check. */
76 name_max = pathconf (".", _PC_NAME_MAX);
82 name_max = pathconf (filename, _PC_NAME_MAX);
/macosx-10.10.1/file_cmds-242/pathchk/
H A Dpathchk.c110 namemax = pathconf(*p == '/' ? "/" : ".", _PC_NAME_MAX);
147 namemax = pathconf(pathd, _PC_NAME_MAX);
158 pathmax = pathconf(path, _PC_PATH_MAX);
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-cygwin_util.c57 return (pathconf(filename, _PC_POSIX_PERMISSIONS));
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dlrealpath.c107 OS, using pathconf(), for the buffer limit. Care is needed
109 pathconf()) making it impossible to pass a correctly sized buffer
115 long path_max = pathconf ("/", _PC_PATH_MAX);
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/loadables/
H A Dpathchk.c62 # define PATH_MAX_FOR(p) pathconf ((p), _PC_PATH_MAX)
67 # define NAME_MAX_FOR(p) pathconf ((p), _PC_NAME_MAX)
314 pathconf with it as the argument. (If `parent' isn't a directory
315 or doesn't exist, the behavior of pathconf is undefined.)
317 it's likely that pathconf can't give us a reasonable value
345 so it's ok to call pathconf with it as the argument. */
H A Dgetconf.c94 static long pathconf __P((const char *, int));
1276 if ((val = pathconf(vpath, cp->value)) == -1) {
1442 pathconf (path, name) function
/macosx-10.10.1/system_cmds-643.1.1/getconf.tproj/
H A Dgetconf.c182 value = pathconf(path, key);
184 err(EX_OSERR, "pathconf: %s", name);
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dtmpfile.c99 tmpnamelen = pathconf (tdir, _PC_NAME_MAX);
/macosx-10.10.1/xnu-2782.1.97/bsd/man/man2/
H A DMakefile135 pathconf.2 \
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dcompat.c109 /* pathconf(_PC_PATH_MAX) is not currently useful to zsh. The value *
123 * Finally, see the note below for glibc; detection of pathconf() is *
126 /* The documentation for pathconf() says something like: *
147 if ((pathmax = pathconf(dir, _PC_PATH_MAX)) >= 0) {
148 /* Some versions of glibc pathconf return a hardwired value! */
162 pathmax = pathconf("/", _PC_PATH_MAX);
164 pathmax = pathconf(".", _PC_PATH_MAX);
/macosx-10.10.1/file_cmds-242/cp/
H A Dutils.c452 if (pathconf(source_dir, _PC_ACL_EXTENDED) != 1 ||
453 pathconf(dest_dir, _PC_ACL_EXTENDED) != 1)
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dsysconf.c176 value = pathconf(path, _PC_NAME_MAX);
/macosx-10.10.1/apache_mod_hfs_apple-14/
H A Dmod_hfs_apple2.c130 case_sens = pathconf(path, _PC_CASE_SENSITIVE);
/macosx-10.10.1/file-46/file/src/
H A Dmagic.c69 /* Get the PIPE_BUF from pathconf */
71 #define PIPE_BUF pathconf(".", _PC_PIPE_BUF)
/macosx-10.10.1/xnu-2782.1.97/libsyscall/xcodescripts/
H A Dcreate-syscalls.pl144 pathconf peeloff poll posix_spawn pread pwrite
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Domitted.c64 #undef pathconf macro
132 #define syspathconf pathconf
788 pathconf(const char* path, int op) function
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/intl/
H A Ddcigettext.c181 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX))

Completed in 214 milliseconds

12