Searched refs:IOV_MAX (Results 1 - 11 of 11) sorted by relevance

/freebsd-12-stable/sys/sys/
H A Dsyslimits.h70 #define IOV_MAX 1024 /* max elements in i/o vector */ macro
/freebsd-12-stable/bin/echo/
H A Decho.c136 nwrite = (veclen > IOV_MAX) ? IOV_MAX : veclen;
/freebsd-12-stable/crypto/openssh/
H A Datomicio.c107 struct iovec iov_array[IOV_MAX], *iov = iov_array;
110 if (iovcnt < 0 || iovcnt > IOV_MAX) {
H A Ddefines.h812 #ifndef IOV_MAX
814 # define IOV_MAX _XOPEN_IOV_MAX macro
816 # define IOV_MAX DEF_IOV_MAX macro
818 # define IOV_MAX 16 macro
/freebsd-12-stable/lib/libopenbsd/
H A Dimsg-buffer.c149 struct iovec iov[IOV_MAX];
156 if (i >= IOV_MAX)
227 struct iovec iov[IOV_MAX];
242 if (i >= IOV_MAX)
/freebsd-12-stable/contrib/serf/
H A Dserf_private.h29 /* Windows does not define IOV_MAX, so we need to ensure it is defined. */
30 #ifndef IOV_MAX
33 #define IOV_MAX 50 macro
258 struct iovec vec[IOV_MAX];
H A Doutgoing.c820 IOV_MAX,
/freebsd-12-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_write.c200 "when iovcnt is greater than IOV_MAX");
207 (void)printf("Calling writev(2, NULL, IOV_MAX + 1)...\n");
210 retval = writev(2, NULL, IOV_MAX + 1);
/freebsd-12-stable/contrib/apr/include/
H A Dapr_file_io.h170 #elif defined(IOV_MAX)
171 #define APR_MAX_IOVEC_SIZE IOV_MAX
/freebsd-12-stable/contrib/ntp/sntp/libevent/
H A Dbuffer.c2170 #elif defined(IOV_MAX) && IOV_MAX < DEFAULT_WRITE_IOVEC
2171 #define NUM_WRITE_IOVEC IOV_MAX
/freebsd-12-stable/contrib/libevent/
H A Dbuffer.c2178 #elif defined(IOV_MAX) && IOV_MAX < DEFAULT_WRITE_IOVEC
2179 #define NUM_WRITE_IOVEC IOV_MAX

Completed in 218 milliseconds