Lines Matching refs:iovec
304 const struct kvec *iovec,
318 req->vec = iovec;
328 msg.len += iovec[i].iov_len;
360 struct kvec iovec;
362 iovec.iov_base = (void *)string;
363 iovec.iov_len = strlen(string) + 1;
364 return xs_talkv(t, type, &iovec, 1, len);
483 struct kvec iovec[2];
490 iovec[0].iov_base = (void *)path;
491 iovec[0].iov_len = strlen(path) + 1;
492 iovec[1].iov_base = (void *)string;
493 iovec[1].iov_len = strlen(string);
495 ret = xs_error(xs_talkv(t, XS_WRITE, iovec, ARRAY_SIZE(iovec), NULL));