Lines Matching refs:iovec
1138 int iovec = 0; in zsock_recv_dgram() local
1152 buf = msg->msg_iov[iovec].iov_base; in zsock_recv_dgram()
1158 len = MIN(tmp_read_len, msg->msg_iov[iovec].iov_len); in zsock_recv_dgram()
1167 msg->msg_iov[iovec].iov_len = len; in zsock_recv_dgram()
1168 iovec++; in zsock_recv_dgram()
1175 msg->msg_iovlen = iovec; in zsock_recv_dgram()
1328 size_t recv_len = 0, iovec = 0, available_len, max_iovlen = 0; in zsock_recv_stream_timed() local
1336 buf = msg->msg_iov[iovec].iov_base; in zsock_recv_stream_timed()
1337 available_len = msg->msg_iov[iovec].iov_len; in zsock_recv_stream_timed()
1338 msg->msg_iov[iovec].iov_len = 0; in zsock_recv_stream_timed()
1368 msg->msg_iov[iovec].iov_len += res; in zsock_recv_stream_timed()
1369 buf = (uint8_t *)(msg->msg_iov[iovec].iov_base) + res; in zsock_recv_stream_timed()
1374 iovec++; in zsock_recv_stream_timed()
1376 if (iovec == max_iovlen) { in zsock_recv_stream_timed()
1380 msg->msg_iovlen = iovec; in zsock_recv_stream_timed()
1381 buf = msg->msg_iov[iovec].iov_base; in zsock_recv_stream_timed()
1382 available_len = msg->msg_iov[iovec].iov_len; in zsock_recv_stream_timed()
1383 msg->msg_iov[iovec].iov_len = 0; in zsock_recv_stream_timed()