Home
last modified time | relevance | path

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

/external/virglrenderer/src/
Diov.c46 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 …]
Dvrend_iov.h53 size_t vrend_get_iovec_size(const struct iovec *iov, int iovlen);
/external/usrsctp/usrsctplib/
Duser_recv_thread.c290 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 …]
Duser_socket.c585 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/
Dnl.c374 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/
Dss.c2483 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/
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.inc688 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/
Dsanitizer_common_syscalls.inc134 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) {
Dsanitizer_common_interceptors.inc983 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/
Dsocketmodule.c3855 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/
Dcore.txt941 nl_send_iovec(sk, msg, iov, iovlen)
960 nl_send_iovec(sk, msg, iov, iovlen)