Lines Matching refs:suffix

965     def write_func_prot(self, qual_ret, name, args=None, doc=None, suffix=''):  argument
1005 self.p(v + ')' + suffix)
1083 suffix = f"_{ri.type_name}"
1086 suffix += f"{direction_to_suffix[direction]}"
1089 suffix += '_req_dump'
1093 suffix += f"{direction_to_suffix[direction]}"
1095 suffix += op_mode_to_wrapper[ri.op_mode]
1097 suffix += '_rsp'
1098 suffix += '_dump' if deref else '_list'
1108 suffix = ';' if terminate else ''
1122 ri.cw.write_func_prot(ret, fname, args, doc=doc, suffix=suffix)
1420 def print_free_prototype(ri, direction, suffix=';'): argument
1423 ri.cw.write_func_prot('void', f"{name}_free", [f"struct {name} *{arg}"], suffix=suffix)
1427 suffix = f'_{ri.type_name}{direction_to_suffix[direction]}'
1430 suffix += '_dump'
1485 suffix = "_rsp" if direction == "reply" else "_req"
1491 suffix=term)
1539 print_free_prototype(ri, direction, suffix='')
1562 print_free_prototype(ri, 'reply', suffix='')
1580 print_free_prototype(ri, 'reply', suffix='')
1589 def print_ntf_parse_prototype(family, cw, suffix=';'): argument
1591 ['struct ynl_sock *ys'], suffix=suffix)
1595 print_ntf_parse_prototype(family, cw, suffix='')
1665 suffix = ';' if terminate else ' = {'
1723 'struct sk_buff *skb', 'struct genl_info *info'], suffix=';')
1727 'struct sk_buff *skb', 'struct genl_info *info'], suffix=';')
1730 ['struct netlink_callback *cb'], suffix=';')
1733 ['struct netlink_callback *cb'], suffix=';')
1744 ['struct sk_buff *skb', 'struct genl_info *info'], suffix=';')
1749 ['struct sk_buff *skb', 'struct netlink_callback *cb'], suffix=';')
1927 suffix = ','
1929 suffix = f" = {entry.user_value()}" + suffix
1930 cw.p(entry.c_name + suffix)
1960 suffix = ','
1962 suffix = f" = {attr.value},"
1965 cw.p(attr.enum_name + suffix)
1988 suffix = ','
1990 suffix = f" = {op.value},"
1992 cw.p(op.enum_name + suffix)
2009 suffix = ','
2011 suffix = f" = {op['value']},"
2012 cw.p(op.enum_name + suffix)