Lines Matching defs:limit
10459 set a limit (sysconf() value SC_IOV_MAX) on the number of buffers that can be used.
11758 Return the configuration limit name for the file descriptor fd.
11760 If there is no limit, return -1.
11767 long limit;
11770 limit = fpathconf(fd, name);
11771 if (limit == -1 && errno != 0)
11774 return limit;
11785 Return the configuration limit name for the file or directory path.
11787 If there is no limit, return -1.
11796 long limit;
11801 limit = fpathconf(path->fd, name);
11804 limit = pathconf(path->narrow, name);
11805 if (limit == -1 && errno != 0) {
11813 return limit;