Lines Matching refs:term

570 	struct parse_events_term *term;  in test__checkterms_simple()  local
573 term = list_entry(terms->next, struct parse_events_term, list); in test__checkterms_simple()
575 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG); in test__checkterms_simple()
577 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); in test__checkterms_simple()
578 TEST_ASSERT_VAL("wrong val", term->val.num == 10); in test__checkterms_simple()
579 TEST_ASSERT_VAL("wrong config", !term->config); in test__checkterms_simple()
582 term = list_entry(term->list.next, struct parse_events_term, list); in test__checkterms_simple()
584 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG1); in test__checkterms_simple()
586 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); in test__checkterms_simple()
587 TEST_ASSERT_VAL("wrong val", term->val.num == 1); in test__checkterms_simple()
588 TEST_ASSERT_VAL("wrong config", !term->config); in test__checkterms_simple()
591 term = list_entry(term->list.next, struct parse_events_term, list); in test__checkterms_simple()
593 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG2); in test__checkterms_simple()
595 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); in test__checkterms_simple()
596 TEST_ASSERT_VAL("wrong val", term->val.num == 3); in test__checkterms_simple()
597 TEST_ASSERT_VAL("wrong config", !term->config); in test__checkterms_simple()
600 term = list_entry(term->list.next, struct parse_events_term, list); in test__checkterms_simple()
602 term->type_term == PARSE_EVENTS__TERM_TYPE_USER); in test__checkterms_simple()
604 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM); in test__checkterms_simple()
605 TEST_ASSERT_VAL("wrong val", term->val.num == 1); in test__checkterms_simple()
606 TEST_ASSERT_VAL("wrong config", !strcmp(term->config, "umask")); in test__checkterms_simple()