/external/virglrenderer/src/ |
D | iov.c | 46 size_t vrend_get_iovec_size(const struct iovec *iov, int iovlen) { in vrend_get_iovec_size() argument 49 while (iovlen > 0) { in vrend_get_iovec_size() 52 iovlen--; in vrend_get_iovec_size() 58 size_t vrend_read_from_iovec(const struct iovec *iov, int iovlen, in vrend_read_from_iovec() argument 65 while (count > 0 && iovlen > 0) { in vrend_read_from_iovec() 82 iovlen--; in vrend_read_from_iovec() 88 size_t vrend_write_to_iovec(const struct iovec *iov, int iovlen, in vrend_write_to_iovec() argument 94 while (count > 0 && iovlen > 0) { in vrend_write_to_iovec() 110 iovlen--; in vrend_write_to_iovec() 116 size_t vrend_read_from_iovec_cb(const struct iovec *iov, int iovlen, in vrend_read_from_iovec_cb() argument [all …]
|
D | vrend_iov.h | 53 size_t vrend_get_iovec_size(const struct iovec *iov, int iovlen);
|
/external/usrsctp/usrsctplib/ |
D | user_recv_thread.c | 290 unsigned int iovlen = MCLBYTES; in recv_function_raw() local 291 int want_ext = (iovlen > MLEN)? 1 : 0; in recv_function_raw() 307 recvmbuf[i] = sctp_get_mbuf_for_msg(iovlen, want_header, M_NOWAIT, want_ext, MT_DATA); in recv_function_raw() 310 recv_iovec[i].iov_len = iovlen; in recv_function_raw() 313 recv_iovec[i].len = iovlen; in recv_function_raw() 353 if ((unsigned int)n <= iovlen) { in recv_function_raw() 358 SCTP_BUF_LEN(recvmbuf[0]) = iovlen; in recv_function_raw() 360 ncounter -= min(ncounter, iovlen); in recv_function_raw() 364 SCTP_BUF_LEN(recvmbuf[i]->m_next) = min(ncounter, iovlen); in recv_function_raw() 366 ncounter -= min(ncounter, iovlen); in recv_function_raw() [all …]
|
D | user_socket.c | 585 int iovlen; member 627 u_int iovlen; in copyiniov() local 632 iovlen = iovcnt * sizeof (struct iovec); in copyiniov() 633 *iov = malloc(iovlen); /*, M_IOV, M_WAITOK); */ in copyiniov() 634 error = copyin(iovp, *iov, iovlen); in copyiniov() 1035 int iovlen = 1; in userspace_sctp_recvmsg() local 1045 auio.uio_iovcnt = iovlen; in userspace_sctp_recvmsg() 1051 for (i = 0; i <iovlen; i++, tiov++) { in userspace_sctp_recvmsg() 1124 int iovlen = 1; in usrsctp_recvv() local 1140 auio.uio_iovcnt = iovlen; in usrsctp_recvv() [all …]
|
/external/libnl/lib/ |
D | nl.c | 374 int nl_send_iovec(struct nl_sock *sk, struct nl_msg *msg, struct iovec *iov, unsigned iovlen) in nl_send_iovec() argument 382 .msg_iovlen = iovlen, in nl_send_iovec()
|
/external/iproute2/misc/ |
D | ss.c | 2483 int iovlen = 1; in tcpdiag_send() local 2515 iovlen = 3; in tcpdiag_send() 2523 .msg_iovlen = iovlen, in tcpdiag_send() 2543 int iovlen = 1; in sockdiag_send() local 2575 iovlen = 3; in sockdiag_send() 2583 .msg_iovlen = iovlen, in sockdiag_send()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_syscalls.inc | 135 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) {
|
D | sanitizer_common_interceptors.inc | 688 SIZE_T iovlen, SIZE_T maxlen) { 689 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) { 697 SIZE_T iovlen, SIZE_T maxlen) { 698 COMMON_INTERCEPTOR_READ_RANGE(ctx, iovec, sizeof(*iovec) * iovlen); 699 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) { 2537 R(iovlen);
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_syscalls.inc | 134 SIZE_T iovlen, SIZE_T maxlen) { 135 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) { 145 SIZE_T iovlen, SIZE_T maxlen) { 146 POST_READ(iovec, sizeof(*iovec) * iovlen); 147 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) {
|
D | sanitizer_common_interceptors.inc | 983 SIZE_T iovlen, SIZE_T maxlen) { 984 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) { 992 SIZE_T iovlen, SIZE_T maxlen) { 993 COMMON_INTERCEPTOR_READ_RANGE(ctx, iovec, sizeof(*iovec) * iovlen); 994 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) { 3055 R(iovlen);
|
/external/python/cpython3/Modules/ |
D | socketmodule.c | 3855 sock_recvmsg_guts(PySocketSockObject *s, struct iovec *iov, int iovlen, in sock_recvmsg_guts() argument 3897 msg.msg_iovlen = iovlen; in sock_recvmsg_guts()
|
/external/libnl/doc/ |
D | core.txt | 941 nl_send_iovec(sk, msg, iov, iovlen) 960 nl_send_iovec(sk, msg, iov, iovlen)
|