Lines Matching refs:iov_new
580 struct const_iovec *iov_new;
622 iov_new = t_new(struct const_iovec, iov_count);
623 iov_new[0].iov_base = prefix;
624 iov_new[0].iov_len = strlen(prefix);
625 memcpy(&iov_new[1], iov, sizeof(struct const_iovec) * iov_count_new);
626 iov_new[iov_count-2].iov_len = bytes;
627 iov_new[iov_count-1].iov_base = "\r\n";
628 iov_new[iov_count-1].iov_len = 2;
631 if ((ret=o_stream_sendv(stream->parent, iov_new, iov_count)) <= 0) {
639 iov_new[0].iov_len + iov_new[iov_count-1].iov_len));