Searched refs:PATH_MAX (Results 1 – 6 of 6) sorted by relevance
31 # if !defined PATH_MAX && defined _PC_PATH_MAX && defined HAVE_PATHCONF32 # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 \ macro37 # if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN41 # if !defined PATH_MAX && defined MAXPATHLEN42 # define PATH_MAX MAXPATHLEN macro45 # ifndef PATH_MAX46 # define PATH_MAX _POSIX_PATH_MAX macro
138 #ifndef PATH_MAX140 # define PATH_MAX MAXPATHLEN macro147 #ifdef PATH_MAX148 # define GET_PATH_MAX PATH_MAX149 # define PATH_VAR(var) char var[PATH_MAX]
1529 char buf[PATH_MAX + 7]; in msdos_openpipe()
973 PATH_VAR() and GET_PATH_MAX instead of PATH_MAX.974 * dir.c (downcase): Use PATH_VAR() instead of PATH_MAX.
186 - wchar_t* pwd = (wchar_t*)malloc(PATH_MAX);188 + wchar_t* pwd = (wchar_t*)malloc(PATH_MAX*sizeof(wchar_t));189 pPWD.assign(_wgetcwd(pwd, PATH_MAX));191 + char* pwd = (char*)malloc(PATH_MAX);
357 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()