Lines Matching defs:evsel
5 #include "evsel.h"
53 void evsel__reset_counts(struct evsel *evsel)
55 perf_counts__reset(evsel->counts);
58 int evsel__alloc_counts(struct evsel *evsel, int ncpus, int nthreads)
60 evsel->counts = perf_counts__new(ncpus, nthreads);
61 return evsel->counts != NULL ? 0 : -ENOMEM;
64 void evsel__free_counts(struct evsel *evsel)
66 perf_counts__delete(evsel->counts);
67 evsel->counts = NULL;