Home
last modified time | relevance | path

Searched refs:test_filter (Results 1 – 1 of 1) sorted by relevance

/linux-4.4.14/tools/lib/traceevent/
Dparse-filter.c1693 static int test_filter(struct event_format *event, struct filter_arg *arg,
1942 return test_filter(event, arg->op.left, record, err) && in test_op()
1943 test_filter(event, arg->op.right, record, err); in test_op()
1946 return test_filter(event, arg->op.left, record, err) || in test_op()
1947 test_filter(event, arg->op.right, record, err); in test_op()
1950 return !test_filter(event, arg->op.right, record, err); in test_op()
1959 static int test_filter(struct event_format *event, struct filter_arg *arg, in test_filter() function
2051 ret = test_filter(filter_type->event, filter_type->filter, record, &err); in pevent_filter_match()