• Home
  • Raw
  • Download

Lines Matching refs:term

596 	struct parse_events_term *term;  in test__checkterms_simple()  local
599 term = list_entry(terms->next, struct parse_events_term, list); in test__checkterms_simple()
601 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG); in test__checkterms_simple()
603 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); in test__checkterms_simple()
604 TEST_ASSERT_VAL("wrong val", term->val.num == 10); in test__checkterms_simple()
605 TEST_ASSERT_VAL("wrong config", !term->config); in test__checkterms_simple()
608 term = list_entry(term->list.next, struct parse_events_term, list); in test__checkterms_simple()
610 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG1); in test__checkterms_simple()
612 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); in test__checkterms_simple()
613 TEST_ASSERT_VAL("wrong val", term->val.num == 1); in test__checkterms_simple()
614 TEST_ASSERT_VAL("wrong config", !term->config); in test__checkterms_simple()
617 term = list_entry(term->list.next, struct parse_events_term, list); in test__checkterms_simple()
619 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG2); in test__checkterms_simple()
621 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); in test__checkterms_simple()
622 TEST_ASSERT_VAL("wrong val", term->val.num == 3); in test__checkterms_simple()
623 TEST_ASSERT_VAL("wrong config", !term->config); in test__checkterms_simple()
626 term = list_entry(term->list.next, struct parse_events_term, list); in test__checkterms_simple()
628 term->type_term == PARSE_EVENTS__TERM_TYPE_USER); in test__checkterms_simple()
630 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); in test__checkterms_simple()
631 TEST_ASSERT_VAL("wrong val", term->val.num == 1); in test__checkterms_simple()
632 TEST_ASSERT_VAL("wrong config", !strcmp(term->config, "umask")); in test__checkterms_simple()