Lines Matching refs:tb
261 struct rtattr *tb[TCA_ACT_MAX + 1];
268 parse_rtattr_nested(tb, TCA_ACT_MAX, arg);
269 if (tb[TCA_ACT_KIND] == NULL) {
275 a = get_action_kind(RTA_DATA(tb[TCA_ACT_KIND]));
285 err = a->print_aopt(a,f,tb[TCA_ACT_OPTIONS]);
291 if (show_stats && tb[TCA_ACT_STATS]) {
293 print_tcstats2_attr(f, tb[TCA_ACT_STATS], "\t", NULL);
305 struct rtattr *tb[TCA_ACT_MAX_PRIO + 1];
310 parse_rtattr_nested(tb, TCA_ACT_MAX_PRIO, arg);
312 if (tab_flush && NULL != tb[0] && NULL == tb[1]) {
313 int ret = tc_print_one_action(f, tb[0]);
318 if (tb[i]) {
320 if (0 > tc_print_one_action(f, tb[i])) {
338 struct rtattr * tb[TCAA_MAX+1];
347 parse_rtattr(tb, TCAA_MAX, TA_RTA(t), len);
349 if (NULL == tb[TCA_ACT_TAB]) {
366 tc_print_action(fp, tb[TCA_ACT_TAB]);