HomeSort by: relevance | last modified time | path
    Searched defs:pathmax (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/pathchk/
pathchk.c 94 long complen, namemax, pathmax, svnamemax; local
153 pathmax = pathconf(path, _PC_PATH_MAX);
154 if (pathmax == -1 && errno != 0)
155 pathmax = PATH_MAX;
157 pathmax = _POSIX_PATH_MAX;
158 if (pathmax != -1 && strlen(path) >= (size_t)pathmax) {
159 warnx("%s: path too long (limit %ld)", path, pathmax - 1);
  /src/sbin/swapctl/
swaplist.c 93 int hlen, size, inuse, ncounted, pathmax, cw; local
136 pathmax = 11;
170 if ((size_t)pathmax < (l = strlen(sep->se_path)))
171 pathmax = l;
198 pathmax, "Device", hlen, header, cw, "Used",
214 pathmax, sep->se_path, hlen,
236 pathmax, sep->se_path, hlen, szbuf);
301 pathmax, "Total", hlen, szbuf, cw, usbuf, cw, avbuf,
305 pathmax, "Total", hlen,

Completed in 16 milliseconds