Home
last modified time | relevance | path

Searched refs:UIO_MAXIOV (Results 1 – 5 of 5) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dnetwork_freebsd_sendfile.c27 #ifndef UIO_MAXIOV
30 # define UIO_MAXIOV 1024 macro
47 struct iovec chunks[UIO_MAXIOV]; in network_write_chunkqueue_freebsdsendfile()
56 …for(num_chunks = 0, tc = c; tc && tc->type == MEM_CHUNK && num_chunks < UIO_MAXIOV; num_chunks++, … in network_write_chunkqueue_freebsdsendfile()
H A Dnetwork_solaris_sendfilev.c27 #ifndef UIO_MAXIOV
28 # define UIO_MAXIOV IOV_MAX macro
54 struct iovec chunks[UIO_MAXIOV]; in network_write_chunkqueue_solarissendfilev()
66 …for(num_chunks = 0, tc = c; tc && tc->type == MEM_CHUNK && num_chunks < UIO_MAXIOV; num_chunks++, … in network_write_chunkqueue_solarissendfilev()
H A Dnetwork_linux_sendfile.c43 struct iovec chunks[UIO_MAXIOV]; in network_write_chunkqueue_linuxsendfile()
53 tc && tc->type == MEM_CHUNK && num_chunks < UIO_MAXIOV; in network_write_chunkqueue_linuxsendfile()
H A Dnetwork_writev.c55 #elif defined(UIO_MAXIOV) /* Linux x86 (glibc-2.2.5-233) */ in network_write_chunkqueue_writev()
56 const size_t max_chunks = UIO_MAXIOV; in network_write_chunkqueue_writev()
H A Dnetwork_mtcp_writev.c55 #elif defined(UIO_MAXIOV) /* Linux x86 (glibc-2.2.5-233) */
56 const size_t max_chunks = UIO_MAXIOV;