Home
last modified time | relevance | path

Searched refs:PATH_MAX (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/host-tools/sed-4.2.1/lib/
Dpathmax.h31 # if !defined PATH_MAX && defined _PC_PATH_MAX && defined HAVE_PATHCONF
32 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 \ macro
37 # if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN
41 # if !defined PATH_MAX && defined MAXPATHLEN
42 # define PATH_MAX MAXPATHLEN macro
45 # ifndef PATH_MAX
46 # define PATH_MAX _POSIX_PATH_MAX macro
/ndk/sources/host-tools/make-3.81/
Dmake.h138 #ifndef PATH_MAX
140 # define PATH_MAX MAXPATHLEN macro
147 #ifdef PATH_MAX
148 # define GET_PATH_MAX PATH_MAX
149 # define PATH_VAR(var) char var[PATH_MAX]
Dfunction.c1529 char buf[PATH_MAX + 7]; in msdos_openpipe()
DChangeLog973 PATH_VAR() and GET_PATH_MAX instead of PATH_MAX.
974 * dir.c (downcase): Use PATH_VAR() instead of PATH_MAX.
/ndk/sources/host-tools/sed-4.2.1/sed/
Dutils.c357 buf1 = ck_malloc (PATH_MAX + 1); in follow_symlink()
358 buf2 = ck_malloc (PATH_MAX + 1); in follow_symlink()
359 buf_size = PATH_MAX + 1; in follow_symlink()