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 in function:check
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 64 int hlen, size, inuse, ncounted, pathmax; local in function:list_swap
83 pathmax = 11;
115 if ((size_t)pathmax < (l = strlen(sep->se_path)))
116 pathmax = l;
119 pathmax, "Device", hlen, header,
134 (void)printf("%-*s %*ld ", pathmax, sep->se_path, hlen,
152 (void)printf("%-*s %*s ", pathmax, sep->se_path, hlen, szbuf);
208 (void)printf("%-*s %*s %8s %8s %5.0f%%\n", pathmax, "Total",
212 (void)printf("%-*s %*ld %8ld %8ld %5.0f%%\n", pathmax, "Total",

Completed in 12 milliseconds