Searched refs:PATH_MAX (Results 26 - 50 of 434) sorted by relevance

1234567891011>>

/macosx-10.10.1/ksh-23/ksh/src/lib/libast/path/
H A Dpathaccess.c42 return pathaccess_20100601(dirs, a, b, mode, path, PATH_MAX);
54 char cwd[PATH_MAX];
H A Dpathprobe.c54 return pathprobe_20100601(lang, tool, proc, op, path, PATH_MAX, attr, PATH_MAX);
117 char buf[PATH_MAX];
118 char cmd[PATH_MAX];
119 char exe[PATH_MAX];
120 char lib[PATH_MAX];
121 char ver[PATH_MAX];
141 strncopy(proc + n, p, PATH_MAX - n - 1);
167 if (n < (PATH_MAX - 5))
175 nx = path + PATH_MAX
[all...]
H A Dpathkey.c46 return pathkey_20100601(lang, tool, path, key, 16, attr, PATH_MAX);
68 char tmp[PATH_MAX];
112 if (!flags && fs3d(FS3D_TEST) && (c = mount(path, tmp, FS3D_GET|FS3D_ALL|FS3D_SIZE(PATH_MAX), NiL)) > 1 && c < PATH_MAX)
H A Dpathnative.c57 if (!buf || siz < PATH_MAX)
59 char tmp[PATH_MAX];
H A Dpathposix.c57 if (!buf || siz < PATH_MAX)
59 char tmp[PATH_MAX];
/macosx-10.10.1/tcl-105/tk/tk/unix/
H A DtkUnixInit.c146 char tkLibPath[PATH_MAX + 1];
149 "com.tcltk.tklibrary", TK_FRAMEWORK_VERSION, 0, PATH_MAX,
/macosx-10.10.1/ncurses-44/ncurses/progs/
H A Dprogs.priv.h168 #ifndef PATH_MAX
170 # define PATH_MAX _POSIX_PATH_MAX macro
172 # define PATH_MAX MAXPATHLEN macro
174 # define PATH_MAX 255 /* the Posix minimum pathsize */ macro
/macosx-10.10.1/uucp-11/uucp/unix/
H A Dchmod.c19 char rfile[PATH_MAX];
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dsyslimits.h91 #define PATH_MAX 1024 /* max bytes in pathname */ macro
/macosx-10.10.1/WebKit2-7600.1.25/Shared/efl/
H A DProcessExecutablePathEfl.cpp51 char readLinkBuffer[PATH_MAX] = {0};
54 ssize_t result = readlink("/proc/self/exe", readLinkBuffer, PATH_MAX);
56 ssize_t result = readlink("/proc/curproc/file", readLinkBuffer, PATH_MAX);
/macosx-10.10.1/kext_tools-384.1.4/
H A Dsafecalls.c77 /* COMPILE_TIME_ASSERT(sizeof(dst) == PATH_MAX); */ \
80 if (strlcpy(dst, src, PATH_MAX) >= PATH_MAX) goto finish; \
84 COMPILE_TIME_ASSERT(sizeof(dst) == PATH_MAX); \
87 if (strlcat(dst, src, PATH_MAX) >= PATH_MAX) goto finish; \
112 strlcpy(mntpt, sfs->f_mntonname, PATH_MAX);
130 char path[PATH_MAX] = "<unknown>";
176 int schdirparent(int fdvol, const char *path, int *olddir, char child[PATH_MAX])
180 char parent[PATH_MAX];
[all...]
/macosx-10.10.1/xnu-2782.1.97/tools/tests/xnu_quick_test/
H A Dcontent_protection_test.c29 extern char g_target_path[PATH_MAX];
360 char filepath[PATH_MAX];
361 char dirpath[PATH_MAX];
362 char subdirpath[PATH_MAX];
368 bzero(filepath, PATH_MAX);
369 bzero(dirpath, PATH_MAX);
370 bzero(subdirpath, PATH_MAX);
373 init_result |= (strlcat(filepath, g_target_path, PATH_MAX) == PATH_MAX);
374 init_result |= (strlcat(filepath, "/", PATH_MAX)
[all...]
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Dconfstr.c213 if ((p = alloca(PATH_MAX)) == NULL) {
217 if (__dirhelper(DIRHELPER_USER_LOCAL, p, PATH_MAX) == NULL) {
225 if ((p = alloca(PATH_MAX)) == NULL) {
229 if (__dirhelper(DIRHELPER_USER_LOCAL_TEMP, p, PATH_MAX) == NULL) {
248 if ((p = alloca(PATH_MAX)) == NULL) {
252 if (__dirhelper(DIRHELPER_USER_LOCAL_CACHE, p, PATH_MAX) == NULL) {
/macosx-10.10.1/WebKit2-7600.1.25/Shared/mac/
H A DSandboxInitialiationParametersMac.mm44 char normalizedPath[PATH_MAX];
56 char path[PATH_MAX];
57 if (confstr(confID, path, PATH_MAX) <= 0)
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Dspell.c67 char guess[PATH_MAX + 1], best[PATH_MAX + 1];
88 if (p < guess + PATH_MAX)
/macosx-10.10.1/ncurses-44/ncurses/ncurses/
H A Dcurses.priv.h86 #ifndef PATH_MAX
88 # define PATH_MAX _POSIX_PATH_MAX macro
90 # define PATH_MAX MAXPATHLEN macro
92 # define PATH_MAX 255 /* the Posix minimum path-size */ macro
626 char trace_fname[PATH_MAX];
/macosx-10.10.1/OpenSSL098-52/src/crypto/
H A DLPdir_unix.c40 is NAME_MAX. However, some operating systems use PATH_MAX instead.
41 Therefore, it seems natural to first check for PATH_MAX and use that,
43 #if defined(PATH_MAX)
44 # define LP_ENTRY_SIZE PATH_MAX
49 /* Of course, there's the possibility that neither PATH_MAX nor NAME_MAX
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dlrealpath.c60 # if defined (PATH_MAX)
61 # define REALPATH_LIMIT PATH_MAX
108 though, some systems do not limit PATH_MAX (return -1 for
118 /* PATH_MAX is bounded. */
/macosx-10.10.1/dcerpc-61/dcerpc/idl_compiler/
H A Dsysdep.h259 #ifndef PATH_MAX
260 # define PATH_MAX 1024 macro
/macosx-10.10.1/ksh-23/ksh/src/lib/libcoshell/
H A Dcolib.h107 #define CO_BUFSIZ (PATH_MAX/2) /* temporary buffer size */
108 #define CO_MAXEVAL (PATH_MAX*8) /* max eval'd action size */
/macosx-10.10.1/tcl-105/tk84/tk/unix/
H A DtkUnixInit.c155 char tkLibPath[PATH_MAX + 1];
157 "com.tcltk.tklibrary", TK_FRAMEWORK_VERSION, 0, PATH_MAX, tkLibPath);
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dchdir-long.c34 #ifndef PATH_MAX
35 # error "compile this file only if your system defines PATH_MAX"
91 /* This is a function much like chdir, but without the PATH_MAX limitation
104 has length PATH_MAX or greater on systems that define PATH_MAX). */
124 assert (PATH_MAX <= len);
162 while (PATH_MAX <= dir_end - dir)
165 /* Find a slash that is PATH_MAX or fewer bytes away from dir.
167 length PATH_MAX-1 or less. */
168 char *slash = memrchr (dir, '/', PATH_MAX);
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/preroot/
H A Dgetpreroot.c51 char buf[PATH_MAX];
78 char dots[PATH_MAX];
91 p = path + PATH_MAX - 1;
98 if ((d - dots) > (PATH_MAX - 4)) ERROR(ERANGE);
143 if ((d - dots) > (PATH_MAX - 1 - namlen)) ERROR(ERANGE);
/macosx-10.10.1/ntp-92/libopts/
H A Dautoopts.h41 # ifdef PATH_MAX
42 # define AG_PATH_MAX ((size_t)PATH_MAX)
47 # if defined(PATH_MAX) && (PATH_MAX > MAXPATHLEN)
49 # define AG_PATH_MAX ((size_t)PATH_MAX)
/macosx-10.10.1/ntp-92/sntp/libopts/
H A Dautoopts.h41 # ifdef PATH_MAX
42 # define AG_PATH_MAX ((size_t)PATH_MAX)
47 # if defined(PATH_MAX) && (PATH_MAX > MAXPATHLEN)
49 # define AG_PATH_MAX ((size_t)PATH_MAX)

Completed in 170 milliseconds

1234567891011>>