Lines Matching refs:req
364 int sendAndProcessNetlinkResponse(const void *req, int len) { in sendAndProcessNetlinkResponse() argument
403 int rv = send(fd, req, len, 0); in sendAndProcessNetlinkResponse()
536 } req = { in doTcQdiscClsact() local
539 .nlmsg_len = sizeof(req), in doTcQdiscClsact()
563 return sendAndProcessNetlinkResponse(&req, sizeof(req)); in doTcQdiscClsact()
600 } req = { in tcAddBpfFilter() local
603 .nlmsg_len = sizeof(req), in tcAddBpfFilter()
622 .nla_len = sizeof(req.kind), in tcAddBpfFilter()
631 .nla_len = sizeof(req.options), in tcAddBpfFilter()
638 .nla_len = sizeof(req.options.fd), in tcAddBpfFilter()
647 .nla_len = sizeof(req.options.name), in tcAddBpfFilter()
658 .nla_len = sizeof(req.options.flags), in tcAddBpfFilter()
666 snprintf(req.options.name.str, sizeof(req.options.name.str), "%s:[*fsobj]", in tcAddBpfFilter()
669 int error = sendAndProcessNetlinkResponse(&req, sizeof(req)); in tcAddBpfFilter()
709 } req = { in tcDeleteFilter() local
712 .nlmsg_len = sizeof(req), in tcDeleteFilter()
729 return sendAndProcessNetlinkResponse(&req, sizeof(req)); in tcDeleteFilter()