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

1 2 3 4

  /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
pathmax.h 30 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 \
31 : pathconf ("/", _PC_PATH_MAX))
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
pathmax.h 30 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 \
31 : pathconf ("/", _PC_PATH_MAX))
addext.c 60 /* The file name is so short there's no need to call pathconf. */
63 slen_max = pathconf (".", _PC_NAME_MAX);
68 slen_max = pathconf (filename, _PC_NAME_MAX);
  /src/external/gpl2/xcvs/dist/lib/
pathmax.h 32 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 \
33 : pathconf ("/", _PC_PATH_MAX))
  /src/external/gpl2/groff/dist/src/libs/libgroff/
maxpathname.cpp 23 /* path_name_max(dir) does the same as pathconf(dir, _PC_PATH_MAX) */
37 return pathconf("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf("/",_PC_PATH_MAX);
maxfilename.cpp 23 /* file_name_max(dir) does the same as pathconf(dir, _PC_NAME_MAX) */
37 return pathconf(fname, _PC_NAME_MAX);
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
addext.c 60 /* The file name is so short there's no need to call pathconf. */
63 slen_max = pathconf (".", _PC_NAME_MAX);
68 slen_max = pathconf (filename, _PC_NAME_MAX);
  /src/usr.bin/pathchk/
pathchk.c 105 namemax = pathconf(*p == '/' ? "/" : ".", _PC_NAME_MAX);
142 namemax = pathconf(pathd, _PC_NAME_MAX);
153 pathmax = pathconf(path, _PC_PATH_MAX);
  /src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
readlink4.c 29 max = pathconf (argv[0], _PC_PATH_MAX);
  /src/external/gpl3/gdb.old/dist/sim/testsuite/cris/c/
readlink4.c 29 max = pathconf (argv[0], _PC_PATH_MAX);
  /src/external/bsd/am-utils/dist/conf/mount/
mount_aix3.c 145 v2args.pathconf = v3args->pathconf;
172 v3args_bis.pathconf = v3args->pathconf;
mount_aix.c 139 v2args.pathconf = v3args->pathconf;
  /src/external/gpl3/gcc.old/dist/libiberty/
lrealpath.c 107 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);
  /src/crypto/external/apache2/openssl/dist/crypto/
o_fopen.c 88 if (pathconf(filename, _PC_NAME_MAX) <= 12) { /* 8.3 file system? */
  /src/crypto/external/bsd/openssl/dist/crypto/
o_fopen.c 86 if (pathconf(filename, _PC_NAME_MAX) <= 12) { /* 8.3 file system? */
  /src/crypto/external/bsd/openssl.old/dist/crypto/
o_fopen.c 86 if (pathconf(filename, _PC_NAME_MAX) <= 12) { /* 8.3 file system? */
  /src/external/bsd/am-utils/dist/conf/nfs_prot/
nfs_prot_aix4_3.h 240 struct ppathcnf *pathconf; /* static pathconf kludge */ member in struct:aix4_nfs_args
264 struct pathcnf *pathconf; /* pathconf */
293 struct ppathcnf *pathconf; /* static pathconf kludge */ member in struct:aix4_nfs_args_bis
nfs_prot_aix4_2.h 241 struct pathcnf *pathconf; /* pathconf */ member in struct:aix4_nfs_args
  /src/sbin/sysctl/
pathconf.c 1 /* $NetBSD: pathconf.c,v 1.7 2004/03/25 19:36:27 atatat Exp $ */
40 static char sccsid[] = "@(#)pathconf.c 8.1 (Berkeley) 6/6/93";
42 static char rcsid[] = "$NetBSD: pathconf.c,v 1.7 2004/03/25 19:36:27 atatat Exp $";
168 value = pathconf(pathname, indx);
  /src/sys/compat/sunos/
sunos.h 40 struct pathcnf *pathconf; /* static pathconf kludge */ member in struct:sunos_nfs_args
  /src/sys/compat/linux/arch/alpha/
linux_osf1.h 178 osf1_data_ptr pathconf; member in struct:osf1_nfs_args
  /src/crypto/external/bsd/openssl.old/dist/
e_os.h 113 # define HAS_LFN_SUPPORT(name) (pathconf((name), _PC_NAME_MAX) > 12)
  /src/external/gpl2/texinfo/dist/lib/
system.h 211 # define HAVE_LONG_FILENAMES(dir) (pathconf (dir, _PC_NAME_MAX) > 12)
  /src/external/gpl3/binutils/dist/libiberty/
lrealpath.c 234 OS, using pathconf(), for the buffer limit. Care is needed
236 pathconf()) making it impossible to pass a correctly sized buffer
242 long path_max = pathconf ("/", _PC_PATH_MAX);
  /src/external/gpl3/binutils.old/dist/libiberty/
lrealpath.c 234 OS, using pathconf(), for the buffer limit. Care is needed
236 pathconf()) making it impossible to pass a correctly sized buffer
242 long path_max = pathconf ("/", _PC_PATH_MAX);

Completed in 30 milliseconds

1 2 3 4