Lines Matching defs:iov
23 struct kvec iov;
25 memset(&iov, 0, sizeof(struct kvec));
26 iov.iov_len = length;
27 iov.iov_base = buf;
29 rx_got = rx_data(conn, &iov, 1, length);
46 struct kvec iov[2];
50 memset(&iov[0], 0, 2 * sizeof(struct kvec));
51 iov[0].iov_len = ISCSI_HDR_LEN;
52 iov[0].iov_base = pdu_buf;
55 iov[1].iov_len = text_length;
56 iov[1].iov_base = text_buf;
60 tx_sent = tx_data(conn, &iov[0], iov_cnt, length);