Lines Matching defs:vec
204 struct iovec vec[3];
215 vec[0].iov_base = header;
216 vec[0].iov_len = hdr_len;
217 vec[1].iov_base = (void *) (buf + offset);
218 vec[1].iov_len = body_len;
219 vec[2].iov_base = CRLF;
220 vec[2].iov_len = 2;
222 rv = apr_file_writev_full(ctx->conn->file, vec, 3, &bytes);
234 (apr_uint64_t)(vec[0].iov_len + vec[1].iov_len + vec[2].iov_len), ctx->conn->filename, ctx->conn->direction, ctx->uuid, ctx->count);
243 (apr_uint64_t)(vec[0].iov_len + vec[1].iov_len + vec[2].iov_len), ctx->conn->filename, ctx->conn->direction, ctx->uuid, ctx->count);
253 nbytes -= vec[1].iov_len;
254 offset += vec[1].iov_len;