Lines Matching defs:iovec
293 const iovec_t *iovec,
308 msg.len += iovec[i].iov_len;
321 err = xb_write(iovec[i].iov_base, iovec[i].iov_len);
365 iovec_t iovec;
367 iovec.iov_base = (char *)string;
368 iovec.iov_len = strlen(string) + 1;
369 return (xs_talkv(t, type, &iovec, 1, ret, len));
531 iovec_t iovec[2];
536 iovec[0].iov_base = (void *)path;
537 iovec[0].iov_len = strlen(path) + 1;
538 iovec[1].iov_base = (void *)string;
539 iovec[1].iov_len = strlen(string);
541 ret = xs_talkv(t, XS_WRITE, iovec, 2, NULL, NULL);
542 kmem_free(path, iovec[0].iov_len);