Lines Matching refs:iov
100 struct kvec iov;
102 iov.iov_base = buf;
103 iov.iov_len = to_read;
108 rc = recvmsg_nofs(sock, &hmdfs_msg, &iov, 1, to_read,
130 struct kvec iov;
133 iov.iov_base = (char *)buf + read_cnt;
134 iov.iov_len = to_read - read_cnt;
139 rc = recvmsg_nofs(sock, &hmdfs_msg, &iov, 1,
655 struct kvec iov[TCP_KVEC_ELE_DOUBLE];
662 iov[0].iov_base = msg->head;
663 iov[0].iov_len = msg->head_len;
680 iov[1].iov_base = outdata;
681 iov[1].iov_len = outlen;
685 send_len = sendmsg_nofs(tcp->sock, &tcp_msg, iov, send_vec_cnt,
709 struct kvec iov[TCP_KVEC_ELE_TRIPLE];
716 iov[TCP_KVEC_HEAD].iov_base = msg->head;
717 iov[TCP_KVEC_HEAD].iov_len = msg->head_len;
721 iov[TCP_KVEC_DATA].iov_base = msg->data;
722 iov[TCP_KVEC_DATA].iov_len = msg->len;
725 iov[TCP_KVEC_FILE_PARA].iov_base = msg->sdesc;
726 iov[TCP_KVEC_FILE_PARA].iov_len = msg->sdesc_len;
727 iov[TCP_KVEC_FILE_CONTENT].iov_base = msg->data;
728 iov[TCP_KVEC_FILE_CONTENT].iov_len = msg->len;
732 send_len = sendmsg_nofs(tcp->sock, &tcp_msg, iov, send_vec_cnt,