Home
last modified time | relevance | path

Searched refs:TC_H_MIN (Results 1 – 8 of 8) sorted by relevance

/third_party/libnl/lib/route/
Dclassid.c124 snprintf(buf, len, ":%x", TC_H_MIN(handle)); in rtnl_tc_handle2str()
125 else if (0 == TC_H_MIN(handle)) in rtnl_tc_handle2str()
129 TC_H_MAJ(handle) >> 16, TC_H_MIN(handle)); in rtnl_tc_handle2str()
203 if (TC_H_MIN(h)) in rtnl_tc_str2handle()
396 if (TC_H_MIN(++classid) == TC_H_MIN(TC_H_ROOT)) in rtnl_classid_generate()
412 if (TC_H_MIN(classid)) in rtnl_classid_generate()
413 fprintf(fd, "%x", TC_H_MIN(classid)); in rtnl_classid_generate()
Dcls.c393 cls->c_protocol = ntohs(TC_H_MIN(cls->c_info)); in cls_msg_parser()
/third_party/iptables/extensions/
Dlibxt_CLASSIFY.c52 printf(" %x:%x", TC_H_MAJ(priority)>>16, TC_H_MIN(priority)); in CLASSIFY_print_class()
73 TC_H_MAJ(clinfo->priority)>>16, TC_H_MIN(clinfo->priority)); in CLASSIFY_save()
83 TC_H_MAJ(clinfo->priority)>>16, TC_H_MIN(clinfo->priority)); in CLASSIFY_arp_save()
112 TC_H_MIN(handle)); in CLASSIFY_xlate()
/third_party/libnl/src/
Dnl-classid-lookup.c86 printf("%x:%x\n", TC_H_MAJ(classid) >> 16, TC_H_MIN(classid)); in main()
/third_party/libnl/include/netlink/route/
Dtc.h40 #define TC_HANDLE(maj, min) (TC_H_MAJ((maj) << 16) | TC_H_MIN(min))
/third_party/libnl/tests/
Dtest-u32-filter-with-actions.c32 #define TC_HANDLE(maj, min) (TC_H_MAJ((maj) << 16) | TC_H_MIN(min))
Dtest-complex-HTB-with-hash-filters.c32 #define TC_HANDLE(maj, min) (TC_H_MAJ((maj) << 16) | TC_H_MIN(min))
/third_party/libnl/include/linux-private/linux/
Dpkt_sched.h70 #define TC_H_MIN(h) ((h)&TC_H_MIN_MASK) macro