Lines Matching defs:iovcnt
830 sock_readv(int fd, struct iovec *iov, int iovcnt)
834 .msg_iovlen = iovcnt,
913 uring_sock_readv_no_pipe(struct spdk_sock *_sock, struct iovec *iovs, int iovcnt)
928 return sock_readv(sock->fd, iovs, iovcnt);
941 return sock_readv(sock->fd, iovs, iovcnt);
949 for (i = 0; i < iovcnt; i++) {
990 uring_sock_readv(struct spdk_sock *_sock, struct iovec *iov, int iovcnt)
1002 return uring_sock_readv_no_pipe(_sock, iov, iovcnt);
1006 for (i = 0; i < iovcnt; i++) {
1014 return sock_readv(sock->fd, iov, iovcnt);
1024 return uring_sock_recv_from_pipe(sock, iov, iovcnt);
1039 uring_sock_writev(struct spdk_sock *_sock, struct iovec *iov, int iovcnt)
1044 .msg_iovlen = iovcnt,
1063 for (i = 0; i < req->iovcnt; i++) {
1238 uint32_t iovcnt;
1255 iovcnt = spdk_sock_prep_reqs(&sock->base, task->iovs, task->iov_cnt, &task->last_req, &flags);
1256 if (!iovcnt) {
1260 task->iov_cnt = iovcnt;
1975 int iovcnt;
1995 iovcnt = spdk_sock_prep_reqs(_sock, iovs, 0, NULL, &flags);
1996 if (iovcnt == 0) {
2003 msg.msg_iovlen = iovcnt;