HomeSort by relevance Sort by last modified time
    Searched refs:iov_max (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/native/
DatagramDispatcher.c 64 // Android-changed : Use sysconf for IOV_MAX.
65 static int iov_max = -1; variable
76 // Android-changed : Use sysconf for IOV_MAX.
77 if (iov_max == -1) {
78 iov_max = sysconf(_SC_IOV_MAX);
80 if (len > iov_max) {
81 len = iov_max;
120 // Android-changed : Use sysconf for IOV_MAX.
121 if (iov_max == -1) {
122 iov_max = sysconf(_SC_IOV_MAX)
    [all...]
IOUtil.c 169 jlong iov_max = sysconf(_SC_IOV_MAX); local
170 if (iov_max == -1)
171 iov_max = 16;
172 return (jint)iov_max;
  /toolchain/binutils/binutils-2.25/gold/
fileread.cc 693 // Portable IOV_MAX.
697 #elif defined(IOV_MAX)
698 #define GOLD_IOV_MAX IOV_MAX
708 static size_t iov_max = GOLD_IOV_MAX; local
721 if (j - i >= File_read::max_readv_entries || j - i >= iov_max / 2)

Completed in 609 milliseconds