Searched refs:PATH_MAX (Results 51 - 75 of 104) sorted by relevance

12345

/haiku-fatelf/src/bin/bash/lib/intl/
H A Ddcigettext.c172 PATH_MAX but might cause redefinition warnings when sys/param.h is
182 #if !defined PATH_MAX && defined _PC_PATH_MAX
183 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX)) macro
187 #if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN
191 #if !defined PATH_MAX && defined MAXPATHLEN
192 # define PATH_MAX MAXPATHLEN macro
195 #ifndef PATH_MAX
196 # define PATH_MAX _POSIX_PATH_MAX macro
550 path_max = (unsigned int) PATH_MAX;
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dgetcwd.c117 char path[PATH_MAX + 1];
336 char b[PATH_MAX];
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dcanonicalize-lgpl.c90 canonical name is PATH_MAX chars or more, returns null with `errno'
91 set to ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars,
125 #ifdef PATH_MAX
126 path_max = PATH_MAX;
/haiku-fatelf/src/bin/gawk/intl/
H A Ddcigettext.c166 PATH_MAX but might cause redefinition warnings when sys/param.h is
176 #if !defined PATH_MAX && defined _PC_PATH_MAX
177 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX)) macro
181 #if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN
185 #if !defined PATH_MAX && defined MAXPATHLEN
186 # define PATH_MAX MAXPATHLEN macro
189 #ifndef PATH_MAX
190 # define PATH_MAX _POSIX_PATH_MAX macro
540 path_max = (unsigned int) PATH_MAX;
/haiku-fatelf/src/libs/util/
H A Dpw_util.c78 static char masterpasswd[PATH_MAX];
79 static char passwd_dir[PATH_MAX];
80 static char tempname[PATH_MAX];
/haiku-fatelf/src/bin/gdb/readline/examples/
H A Drlfe.c814 #ifndef PATH_MAX
815 # define PATH_MAX 1024 macro
840 static char procfsbuf[PATH_MAX] = { '\0' };
857 char *ldirname, cwd[PATH_MAX], *retdir, *ld;
/haiku-fatelf/src/kits/network/libbind/dst/
H A Dsupport.c307 char pathname[PATH_MAX];
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Dread_termcap.c941 char cwd_buf[PATH_MAX];
1007 char pathbuf[PATH_MAX];
1025 char envhome[PATH_MAX], *h;
1039 && (strlen(h) + sizeof(PRIVATE_CAP)) < PATH_MAX) {
H A Dread_entry.c416 if (need > PATH_MAX)
472 char ttn[PATH_MAX];
H A Dcomp_parse.c310 char filename[PATH_MAX];
H A Dlib_setup.c265 char filename[PATH_MAX];
/haiku-fatelf/src/tests/system/boot/loader/
H A Dplatform_devices.cpp76 char nextPath[PATH_MAX];
/haiku-fatelf/src/bin/consoled/
H A Dconsoled.cpp97 char path[PATH_MAX];
248 char path[PATH_MAX];
/haiku-fatelf/src/bin/gdb/gdb/
H A Dsolib-osf.c220 target_read_string (lms->nameaddr, &name, PATH_MAX, &errcode);
486 target_read_string (minf.module_name, &name, PATH_MAX, &errcode);
H A Dnto-procfs.c92 static char nto_procfs_path[PATH_MAX] = { "/proc" };
156 snprintf (nto_procfs_path, PATH_MAX - 1, "%s%s", nodestr ? nodestr : "", "/proc");
548 char path[PATH_MAX];
550 snprintf (path, PATH_MAX - 1, "%s/%d/as", nto_procfs_path, PIDGET (ptid));
/haiku-fatelf/src/bin/zip/
H A Dapi.c173 char szOrigDir[PATH_MAX];
397 getcwd(szOrigDir, PATH_MAX); /* Save current drive and directory */
/haiku-fatelf/src/kits/network/libbind/isc/
H A Dlogging.c61 char old_name[PATH_MAX+1];
62 char new_name[PATH_MAX+1];
72 if (strlen(chan->out.file.name) > (size_t)(PATH_MAX-3))
/haiku-fatelf/src/bin/unzip/
H A Dunzpriv.h485 # undef PATH_MAX macro
486 # define PATH_MAX 36 macro
1047 * define some or all of the following: NAME_MAX, PATH_MAX, _POSIX_NAME_MAX,
1054 #ifndef PATH_MAX
1056 # define PATH_MAX MAXPATHLEN /* in <sys/param.h> on some systems */ macro
1059 # define PATH_MAX _MAX_PATH macro
1062 # define PATH_MAX FILENAME_MAX /* used like PATH_MAX on some systems */ macro
1064 # define PATH_MAX 1024 macro
1068 #endif /* !PATH_MAX */
[all...]
/haiku-fatelf/src/kits/network/libbind/
H A Dport_after.h69 #ifndef PATH_MAX
70 #define PATH_MAX _POSIX_PATH_MAX macro
/haiku-fatelf/src/bin/coreutils/src/
H A Dpwd.c86 /* Start with a buffer larger than PATH_MAX, but beware of systems
87 on which PATH_MAX is very large -- e.g., INT_MAX. */
88 p->n_alloc = MIN (2 * PATH_MAX, 32 * 1024);
245 unable to handle names longer than PATH_MAX. This function has
257 In any case, any getcwd replacement must *not* exceed the PATH_MAX
H A Dremove.c150 PATH_MAX or 8192 bytes, whichever is shorter):
164 PATH_MAX or 8192 bytes, whichever is shorter):
185 if (MIN (PATH_MAX, 8192) <= file_name_len)
/haiku-fatelf/src/bin/findutils/lib/
H A Dlistfile.c360 So allocate a pessimistic PATH_MAX + 1 bytes. */
361 #define LINK_BUF PATH_MAX
/haiku-fatelf/src/kits/network/libbind/irs/
H A Dlcl_sv.cpp161 char path[PATH_MAX];
/haiku-fatelf/src/system/libroot/posix/unistd/
H A Dconf.cpp257 return PATH_MAX;
/haiku-fatelf/src/bin/bash/
H A Dgeneral.c602 char pathbuf[PATH_MAX + 1];
659 static char tdir[PATH_MAX];

Completed in 132 milliseconds

12345