Lines Matching defs:terms
774 static int test__checkterms_simple(struct list_head *terms)
779 term = list_entry(terms->next, struct parse_events_term, list);
2366 int (*check)(struct list_head *terms);
2470 struct list_head terms;
2473 INIT_LIST_HEAD(&terms);
2475 ret = parse_events_terms(&terms, t->str, /*input=*/ NULL);
2477 pr_debug("failed to parse terms '%s', err %d\n",
2482 ret = t->check(&terms);
2483 parse_events_terms__purge(&terms);
2488 static int test_terms(const struct terms_test *terms, int cnt)
2493 const struct terms_test *t = &terms[i];
2724 TEST_CASE("Parsing of terms (event modifiers)", terms2),