Lines Matching defs:iov
660 struct kvec iov[2];
662 iov[0].iov_base = (void *)path;
663 iov[0].iov_len = strlen(path) + 1;
664 iov[1].iov_base = (void *)token;
665 iov[1].iov_len = strlen(token) + 1;
667 return xs_error(xs_talkv(XBT_NIL, XS_WATCH, iov,
668 ARRAY_SIZE(iov), NULL));
673 struct kvec iov[2];
675 iov[0].iov_base = (char *)path;
676 iov[0].iov_len = strlen(path) + 1;
677 iov[1].iov_base = (char *)token;
678 iov[1].iov_len = strlen(token) + 1;
680 return xs_error(xs_talkv(XBT_NIL, XS_UNWATCH, iov,
681 ARRAY_SIZE(iov), NULL));