/third_party/musl/src/network/ |
D | sendmmsg.c | 14 if (vlen > IOV_MAX) vlen = IOV_MAX; /* This matches the kernel. */ in sendmmsg()
|
D | recvmmsg.c | 28 if (vlen > IOV_MAX) vlen = IOV_MAX; in recvmmsg()
|
/third_party/glib/gio/ |
D | gioprivate.h | 42 #if defined(IOV_MAX) 43 #define G_IOV_MAX IOV_MAX
|
/third_party/boost/libs/asio/doc/overview/ |
D | implementation.qbk | 34 * At most `min(64,IOV_MAX)` buffers may be transferred in a single operation. 54 * At most `min(64,IOV_MAX)` buffers may be transferred in a single operation. 75 * At most `min(64,IOV_MAX)` buffers may be transferred in a single operation. 97 * At most `min(64,IOV_MAX)` buffers may be transferred in a single operation. 118 * At most `min(64,IOV_MAX)` buffers may be transferred in a single operation. 139 * At most `min(64,IOV_MAX)` buffers may be transferred in a single operation. 161 * At most `min(64,IOV_MAX)` buffers may be transferred in a single operation. 183 * At most `min(64,IOV_MAX)` buffers may be transferred in a single operation. 205 * At most `min(64,IOV_MAX)` buffers may be transferred in a single operation.
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | limits.h | 40 #define IOV_MAX 1024 macro
|
/third_party/ltp/testcases/kernel/syscalls/vmsplice/ |
D | vmsplice02.c | 48 { &pipes[1], &ivc, IOV_MAX + 1, EINVAL },
|
/third_party/musl/ndk_musl_include/ |
D | limits.h | 50 #define IOV_MAX 1024 macro
|
/third_party/musl/include/ |
D | limits.h | 50 #define IOV_MAX 1024 macro
|
/third_party/musl/porting/liteos_m/user/include/ |
D | limits.h | 50 #define IOV_MAX 1024 macro
|
/third_party/musl/porting/liteos_a/user/include/ |
D | limits.h | 50 #define IOV_MAX 1024 macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | limits.h | 52 #define IOV_MAX 1024 macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | limits.h | 52 #define IOV_MAX 1024 macro
|
/third_party/boost/libs/asio/include/boost/asio/detail/ |
D | socket_types.hpp | 402 # if defined(IOV_MAX) 403 const int max_iov_len = IOV_MAX;
|
/third_party/boost/boost/asio/detail/ |
D | socket_types.hpp | 402 # if defined(IOV_MAX) 403 const int max_iov_len = IOV_MAX;
|
/third_party/lwip/src/include/lwip/ |
D | sockets.h | 114 #if !defined IOV_MAX 115 #define IOV_MAX 0xFFFF macro 116 #elif IOV_MAX > 0xFFFF
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | limits.h | 85 #define IOV_MAX 1024 macro
|
/third_party/nghttp2/src/ |
D | memchunk.h | 55 #if defined(IOV_MAX) && IOV_MAX < DEFAULT_WR_IOVCNT 56 # define MAX_WR_IOVCNT IOV_MAX
|
D | shrpx_memcached_connection.cc | 585 #if defined(IOV_MAX) && IOV_MAX < DEFAULT_WR_IOVCNT 586 # define MAX_WR_IOVCNT IOV_MAX
|
/third_party/musl/src/conf/ |
D | sysconf.c | 79 [_SC_IOV_MAX] = IOV_MAX, in sysconf()
|
/third_party/gstreamer/gstreamer/plugins/elements/ |
D | gstelements_private.c | 136 #if defined(IOV_MAX) 137 #define GST_IOV_MAX IOV_MAX
|
/third_party/ltp/testcases/kernel/syscalls/cma/ |
D | process_vm_readv03.c | 254 nr_iovecs = nflag ? SAFE_STRTOL(NULL, nr_opt, 1, IOV_MAX) : 10; in setup()
|
/third_party/toybox/toys/posix/ |
D | getconf.c | 101 CONF(IOV_MAX), CONF(LINE_MAX), CONF(LOGIN_NAME_MAX), CONF(NGROUPS_MAX),
|
/third_party/grpc/src/core/lib/iomgr/ |
D | tcp_posix.cc | 1279 #if defined(IOV_MAX) && IOV_MAX < 1000 1280 #define MAX_WRITE_IOVEC IOV_MAX
|
/third_party/libuv/src/unix/ |
D | core.c | 221 #if defined(IOV_MAX) in uv__getiovmax() 222 return IOV_MAX; in uv__getiovmax()
|
/third_party/lwip/src/api/ |
D | sockets.c | 1331 if ((message->msg_iovlen <= 0) || (message->msg_iovlen > IOV_MAX)) { in lwip_recvmsg() 1494 …ERROR("lwip_sendmsg: maximum iovs exceeded", (msg->msg_iovlen > 0) && (msg->msg_iovlen <= IOV_MAX), in lwip_sendmsg_internal()
|