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

  /src/external/mit/libuv/dist/src/unix/
stream.c 759 int iovmax; local
770 iovmax = uv__getiovmax();
773 if (iovcnt > iovmax)
774 iovcnt = iovmax;
fs.c 512 unsigned int iovmax; local
523 iovmax = uv__getiovmax();
524 if (nbufs > iovmax)
525 nbufs = iovmax;
1634 unsigned int iovmax; local
1640 iovmax = uv__getiovmax();
1647 if (req->nbufs > iovmax)
1648 req->nbufs = iovmax;
  /src/external/mit/libuv/dist/test/
test-fs.c 156 static int iovmax = -1;
157 if (iovmax == -1) {
158 iovmax = sysconf(_SC_IOV_MAX);
163 if (iovmax == -1) iovmax = 1;
165 return iovmax;
3632 size_t iovmax; local
3647 iovmax = uv_test_getiovmax();
3693 if (iovcount > iovmax)
3694 iovcount = iovmax;
3740 size_t iovmax; local
    [all...]

Completed in 19 milliseconds