Home | History | Annotate | Download | only in cls

Lines Matching defs:match

14  * @defgroup ematch Extended Match
106 * @name Match
366 struct rtnl_ematch *match;
368 nl_list_for_each_entry(match, head, e_list) {
369 if (match->e_flags & TCF_EM_INVERT)
372 if (match->e_kind == TCF_EM_CONTAINER) {
374 dump_ematch_sequence(&match->e_childs, p);
376 } else if (!match->e_ops) {
377 nl_dump(p, "[unknown ematch %d]", match->e_kind);
379 nl_dump(p, "%s(", match->e_ops->eo_name);
381 if (match->e_ops->eo_dump)
382 match->e_ops->eo_dump(match, p);
387 switch (match->e_flags & TCF_EM_REL_MASK) {