Home | History | Annotate | Download | only in gnulib-lib

Lines Matching defs:path_max

92    canonical name is PATH_MAX chars or more, returns null with `errno'
93 set to ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars,
104 long int path_max;
127 #ifdef PATH_MAX
128 path_max = PATH_MAX;
130 path_max = pathconf (name, _PC_PATH_MAX);
131 if (path_max <= 0)
132 path_max = 1024;
137 rpath = malloc (path_max);
143 rpath_limit = rpath + path_max;
147 if (!__getcwd (rpath, path_max))
207 if (end - start + 1 > path_max)
210 new_size += path_max;
248 buf = allocsa (path_max);
255 n = __readlink (rpath, buf, path_max);
267 extra_buf = allocsa (path_max);
277 if ((long int) (n + len) >= path_max)