Home
last modified time | relevance | path

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

/external/chromium_org/third_party/usrsctp/usrsctplib/
Duser_recv_thread.c303 int iovlen = MCLBYTES; in recv_function_raw() local
304 int want_ext = (iovlen > MLEN)? 1 : 0; in recv_function_raw()
318 recvmbuf[i] = sctp_get_mbuf_for_msg(iovlen, want_header, M_NOWAIT, want_ext, MT_DATA); in recv_function_raw()
321 recv_iovec[i].iov_len = iovlen; in recv_function_raw()
324 recv_iovec[i].len = iovlen; in recv_function_raw()
366 if (n <= iovlen) { in recv_function_raw()
371 SCTP_BUF_LEN(recvmbuf[0]) = iovlen; in recv_function_raw()
373 ncounter -= iovlen; in recv_function_raw()
377 SCTP_BUF_LEN(recvmbuf[i]->m_next) = min(ncounter, iovlen); in recv_function_raw()
379 ncounter -= iovlen; in recv_function_raw()
[all …]
Duser_socket.c552 int iovlen; member
594 u_int iovlen; in copyiniov() local
599 iovlen = iovcnt * sizeof (struct iovec); in copyiniov()
600 *iov = malloc(iovlen); /*, M_IOV, M_WAITOK); */ in copyiniov()
601 error = copyin(iovp, *iov, iovlen); in copyiniov()
944 int iovlen = 1; in userspace_sctp_recvmsg() local
953 auio.uio_iovcnt = iovlen; in userspace_sctp_recvmsg()
959 for (i = 0; i <iovlen; i++, tiov++) { in userspace_sctp_recvmsg()
1033 int iovlen = 1; in usrsctp_recvv() local
1048 auio.uio_iovcnt = iovlen; in usrsctp_recvv()
[all …]
/external/libnl/lib/
Dnl.c235 int nl_send_iovec(struct nl_sock *sk, struct nl_msg *msg, struct iovec *iov, unsigned iovlen) in nl_send_iovec() argument
243 .msg_iovlen = iovlen, in nl_send_iovec()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_syscalls.inc135 SIZE_T iovlen, SIZE_T maxlen) {
136 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) {
146 SIZE_T iovlen, SIZE_T maxlen) {
147 POST_READ(iovec, sizeof(*iovec) * iovlen);
148 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) {
Dsanitizer_common_interceptors.inc317 SIZE_T iovlen, SIZE_T maxlen) {
318 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) {
326 SIZE_T iovlen, SIZE_T maxlen) {
327 COMMON_INTERCEPTOR_READ_RANGE(ctx, iovec, sizeof(*iovec) * iovlen);
328 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) {