HomeSort by relevance Sort by last modified time
    Searched refs:iovlen (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/usrsctp/usrsctplib/
user_recv_thread.c 301 /* iovlen is the size of each mbuf in the chain */
303 int iovlen = MCLBYTES; local
304 int want_ext = (iovlen > MLEN)? 1 : 0;
318 recvmbuf[i] = sctp_get_mbuf_for_msg(iovlen, want_header, M_NOWAIT, want_ext, MT_DATA);
321 recv_iovec[i].iov_len = iovlen;
324 recv_iovec[i].len = iovlen;
366 if (n <= iovlen) {
371 SCTP_BUF_LEN(recvmbuf[0]) = iovlen;
373 ncounter -= iovlen;
377 SCTP_BUF_LEN(recvmbuf[i]->m_next) = min(ncounter, iovlen);
486 int iovlen = MCLBYTES; local
648 int iovlen = MCLBYTES; local
856 int iovlen = MCLBYTES; local
    [all...]
user_socket.c 554 int iovlen; member in struct:sctp_generic_recvmsg_args
596 u_int iovlen; local
601 iovlen = iovcnt * sizeof (struct iovec);
602 *iov = malloc(iovlen); /*, M_IOV, M_WAITOK); */
603 error = copyin(iovp, *iov, iovlen);
947 int iovlen = 1; local
956 auio.uio_iovcnt = iovlen;
962 for (i = 0; i <iovlen; i++, tiov++) {
1036 int iovlen = 1; local
1051 auio.uio_iovcnt = iovlen;
    [all...]
  /external/libnl/lib/
nl.c 231 * @arg iovlen number of struct iovec to be sent.
235 int nl_send_iovec(struct nl_sock *sk, struct nl_msg *msg, struct iovec *iov, unsigned iovlen)
243 .msg_iovlen = iovlen,

Completed in 74 milliseconds