Lines Matching refs:args
131 va_list args; in tipc_tlv_sprintf() local
139 va_start(args, fmt); in tipc_tlv_sprintf()
140 n = vscnprintf(buf, rem, fmt, args); in tipc_tlv_sprintf()
141 va_end(args); in tipc_tlv_sprintf()
1001 struct sk_buff *args; in tipc_nl_compat_publ_dump() local
1004 args = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); in tipc_nl_compat_publ_dump()
1005 if (!args) in tipc_nl_compat_publ_dump()
1008 hdr = genlmsg_put(args, 0, 0, &tipc_genl_family, NLM_F_MULTI, in tipc_nl_compat_publ_dump()
1011 kfree_skb(args); in tipc_nl_compat_publ_dump()
1015 nest = nla_nest_start_noflag(args, TIPC_NLA_SOCK); in tipc_nl_compat_publ_dump()
1017 kfree_skb(args); in tipc_nl_compat_publ_dump()
1021 if (nla_put_u32(args, TIPC_NLA_SOCK_REF, sock)) { in tipc_nl_compat_publ_dump()
1022 kfree_skb(args); in tipc_nl_compat_publ_dump()
1026 nla_nest_end(args, nest); in tipc_nl_compat_publ_dump()
1027 genlmsg_end(args, hdr); in tipc_nl_compat_publ_dump()
1032 err = __tipc_nl_compat_dumpit(&dump, msg, args); in tipc_nl_compat_publ_dump()
1034 kfree_skb(args); in tipc_nl_compat_publ_dump()