Lines Matching defs:args
129 va_list args;
137 va_start(args, fmt);
138 n = vscnprintf(buf, rem, fmt, args);
139 va_end(args);
1002 struct sk_buff *args;
1005 args = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1006 if (!args)
1009 hdr = genlmsg_put(args, 0, 0, &tipc_genl_family, NLM_F_MULTI,
1012 kfree_skb(args);
1016 nest = nla_nest_start_noflag(args, TIPC_NLA_SOCK);
1018 kfree_skb(args);
1022 if (nla_put_u32(args, TIPC_NLA_SOCK_REF, sock)) {
1023 kfree_skb(args);
1027 nla_nest_end(args, nest);
1028 genlmsg_end(args, hdr);
1033 err = __tipc_nl_compat_dumpit(&dump, msg, args);
1035 kfree_skb(args);