Home | History | Annotate | Download | only in iptables

Lines Matching full:matchp

711 	const struct xtables_rule_match *matchp;
715 for (matchp = matches; matchp; matchp = matchp->next)
716 size += XT_ALIGN(sizeof(struct xt_entry_match)) + matchp->match->size;
725 for (matchp = matches; matchp; matchp = matchp->next) {
728 + matchp->match->userspacesize);
729 mptr += XT_ALIGN(sizeof(struct xt_entry_match)) + matchp->match->size;
1183 struct xtables_rule_match *matchp;
1187 for (matchp = matches; matchp; matchp = matchp->next)
1188 size += matchp->match->m->u.match_size;
1196 for (matchp = matches; matchp; matchp = matchp->next) {
1197 memcpy(e->elems + size, matchp->match->m, matchp->match->m->u.match_size);
1198 size += matchp->match->m->u.match_size;
1303 struct xtables_rule_match *matchp;
1690 for (matchp = cs.matches; matchp; matchp = matchp->next)
1691 xtables_option_mfcall(matchp->match);