HomeSort by relevance Sort by last modified time
    Searched refs:IOV_MAX (Results 1 - 25 of 27) sorted by null

1 2

  /external/ltp/android/include/
limits_ltp.h 1 #ifndef IOV_MAX
2 #define IOV_MAX 1024
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
stdio_lim.h 41 #if defined __need_IOV_MAX && !defined IOV_MAX
42 # define IOV_MAX 1024
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
stdio_lim.h 41 #if defined __need_IOV_MAX && !defined IOV_MAX
42 # define IOV_MAX 1024
  /external/strace/tests/
mmsg_name.c 44 #define IOV_MAX1 (IOV_MAX + 1)
122 if (i >= IOV_MAX
150 rc = send_mmsg(-1, &send_mh[IOV_MAX], 2, MSG_DONTWAIT);
153 print_msghdr(&send_mh[IOV_MAX].msg_hdr, 0);
166 if (i >= IOV_MAX
msg_control.c 804 optmem_max = sizeof(long long) * (2 * IOV_MAX + 512);
  /external/strace/tests-m32/
mmsg_name.c 44 #define IOV_MAX1 (IOV_MAX + 1)
122 if (i >= IOV_MAX
150 rc = send_mmsg(-1, &send_mh[IOV_MAX], 2, MSG_DONTWAIT);
153 print_msghdr(&send_mh[IOV_MAX].msg_hdr, 0);
166 if (i >= IOV_MAX
msg_control.c 804 optmem_max = sizeof(long long) * (2 * IOV_MAX + 512);
  /external/strace/tests-mx32/
mmsg_name.c 44 #define IOV_MAX1 (IOV_MAX + 1)
122 if (i >= IOV_MAX
150 rc = send_mmsg(-1, &send_mh[IOV_MAX], 2, MSG_DONTWAIT);
153 print_msghdr(&send_mh[IOV_MAX].msg_hdr, 0);
166 if (i >= IOV_MAX
msg_control.c 804 optmem_max = sizeof(long long) * (2 * IOV_MAX + 512);
  /bionic/libc/include/
limits.h 136 #define IOV_MAX 1024
  /external/ltp/testcases/kernel/syscalls/vmsplice/
vmsplice02.c 25 * nr_segs is greater than IOV_MAX.
63 { &pipes[1], &ivc, IOV_MAX + 1, EINVAL },
  /external/strace/
mmsghdr.c 99 int namelen[IOV_MAX];
106 if (len > IOV_MAX)
107 len = IOV_MAX;
137 .count = IOV_MAX,
msghdr.c 272 optmem_max = sizeof(long long) * (2 * IOV_MAX + 512);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
socket_types.hpp 158 # if defined(IOV_MAX)
159 const int max_iov_len = IOV_MAX;
161 // POSIX platforms are not required to define IOV_MAX.
  /libcore/ojluni/src/main/java/sun/nio/ch/
IOUtil.java 42 static final int IOV_MAX;
119 while (i < count && iov_len < IOV_MAX) {
249 while (i < count && iov_len < IOV_MAX) {
373 IOV_MAX = iovMax();
Util.java 42 private static final int TEMP_BUF_POOL_SIZE = IOUtil.IOV_MAX;
  /bionic/libc/bionic/
sysconf.cpp 115 case _SC_IOV_MAX: return IOV_MAX;
  /bionic/tests/headers/posix/
limits_h.c 51 MACRO(IOV_MAX);
  /external/ltp/testcases/kernel/syscalls/cma/
process_vm_readv03.c 249 nr_iovecs = nflag ? SAFE_STRTOL(NULL, nr_opt, 1, IOV_MAX) : 10;
  /external/python/cpython2/Lib/plat-beos5/
IN.py 110 IOV_MAX = (256)
  /external/python/cpython2/Lib/plat-linux2/
IN.py 336 IOV_MAX = 1024
  /prebuilts/gdb/linux-x86/lib/python2.7/plat-linux2/
IN.py 336 IOV_MAX = 1024
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/plat-linux2/
IN.py 336 IOV_MAX = 1024
  /toolchain/binutils/binutils-2.27/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)
  /external/perfetto/src/tracing/core/
service_impl.cc 645 // writev() can take at most IOV_MAX entries per call. Batch them.
646 constexpr size_t kIOVMax = IOV_MAX;
    [all...]

Completed in 385 milliseconds

1 2