Home
last modified time | relevance | path

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

/external/linux-tools-perf/src/tools/lib/traceevent/
Dparse-filter.c132 filter_type = bsearch(&key, filter->event_filters, in find_filter_type()
134 sizeof(*filter->event_filters), in find_filter_type()
150 filter->event_filters = realloc(filter->event_filters, in add_filter_type()
151 sizeof(*filter->event_filters) * in add_filter_type()
153 if (!filter->event_filters) in add_filter_type()
157 if (filter->event_filters[i].event_id > id) in add_filter_type()
162 memmove(&filter->event_filters[i+1], in add_filter_type()
163 &filter->event_filters[i], in add_filter_type()
164 sizeof(*filter->event_filters) * in add_filter_type()
167 filter_type = &filter->event_filters[i]; in add_filter_type()
[all …]
Devent-parse.h807 struct filter_type *event_filters; member