Home | History | Annotate | Download | only in server

Lines Matching refs:iov

181 // |iov| is an array of struct iovec that contains the netlink message payload.
187 // function (over iov[]).
193 WARN_UNUSED_RESULT int sendNetlinkRequest(uint16_t action, uint16_t flags, iovec* iov, int iovlen) {
198 iov[0].iov_base = &nlmsg;
199 iov[0].iov_len = sizeof(nlmsg);
201 nlmsg.nlmsg_len += iov[i].iov_len;
214 writev(sock, iov, iovlen) != -1 &&
312 iovec iov[] = {
338 if (int ret = sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov))) {
429 iovec iov[] = {
444 return sendNetlinkRequest(action, flags, iov, ARRAY_SIZE(iov));