Searched refs:iov_max (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/native/
H A DDatagramDispatcher.c65 static int iov_max = -1; variable
77 if (iov_max == -1) {
78 iov_max = sysconf(_SC_IOV_MAX);
80 if (len > iov_max) {
81 len = iov_max;
121 if (iov_max == -1) {
122 iov_max = sysconf(_SC_IOV_MAX);
125 if (len > iov_max) {
126 len = iov_max;
H A DIOUtil.c147 jlong iov_max = sysconf(_SC_IOV_MAX); local
148 if (iov_max == -1)
149 iov_max = 16;
150 return (jint)iov_max;

Completed in 50 milliseconds