Home
last modified time | relevance | path

Searched refs:mt2 (Results 1 – 5 of 5) sorted by relevance

/external/toybox/toys/posix/
Ddf.c140 struct mtab_list *mt, *mtstart, *mtend, *mt2, *mt3; in df_main() local
164 for (mt = mtend, mt2 = 0; mt; mt = mt->prev) { in df_main()
165 if (!mt2 && st.st_dev == mt->stat.st_dev) mt2 = mt; in df_main()
168 show_mt(mt ? : mt2, measuring); in df_main()
177 for (mt3 = mt, mt2 = mt->prev; mt2; mt2 = mt2->prev) { in df_main()
178 if (mt->stat.st_dev == mt2->stat.st_dev) { in df_main()
180 if (!strcmp(mt->device, mt2->device)) { in df_main()
182 mt3 = mt2; in df_main()
183 } else mt2->stat.st_dev = 0; in df_main()
/external/iptables/iptables/
Diptables.c826 struct xtables_match *match, *mt, *mt2; in print_match_save() local
830 mt = mt2 = xtables_find_match_revision(name, XTF_TRY_LOAD, in print_match_save()
832 if (!mt2) in print_match_save()
833 mt2 = match; in print_match_save()
834 printf(" -m %s", mt2->alias ? mt2->alias(e) : name); in print_match_save()
Dip6tables.c829 struct xtables_match *match, *mt, *mt2; in print_match_save() local
833 mt = mt2 = xtables_find_match_revision(name, XTF_TRY_LOAD, in print_match_save()
835 if (!mt2) in print_match_save()
836 mt2 = match; in print_match_save()
837 printf(" -m %s", mt2->alias ? mt2->alias(e) : name); in print_match_save()
Dnft-shared.h172 bool compare_matches(struct xtables_rule_match *mt1, struct xtables_rule_match *mt2);
Dnft-shared.c928 struct xtables_rule_match *mt2) in compare_matches() argument
933 for (mp1 = mt1, mp2 = mt2; mp1 && mp2; mp1 = mp1->next, mp2 = mp2->next) { in compare_matches()