Searched refs:evsel (Results 176 - 181 of 181) sorted by last modified time

12345678

/linux-master/tools/perf/util/
H A Ddb-export.h13 struct evsel;
28 struct evsel *evsel; member in struct:export_sample
42 int (*export_evsel)(struct db_export *dbe, struct evsel *evsel);
82 int db_export__evsel(struct db_export *dbe, struct evsel *evsel);
99 struct perf_sample *sample, struct evsel *evsel,
H A Devswitch.c7 bool evswitch__discard(struct evswitch *evswitch, struct evsel *evsel) argument
10 if (evswitch->on != evsel)
22 if (evswitch->off != evsel)
H A Devsel_config.h12 * evsel::config_terms list head.
54 struct evsel;
56 struct evsel_config_term *__evsel__get_config_term(struct evsel *evsel, enum evsel_term_type type);
58 #define evsel__get_config_term(evsel, type) \
59 __evsel__get_config_term(evsel, EVSEL__CONFIG_TERM_ ## type)
/linux-master/tools/perf/arch/powerpc/util/
H A Devsel.c3 #include "util/evsel.h"
5 void arch_evsel__set_sample_weight(struct evsel *evsel) argument
7 evsel__set_sample_bit(evsel, WEIGHT_STRUCT);
/linux-master/tools/perf/python/
H A Dtwatch.py14 evsel = perf.evsel(type = perf.TYPE_SOFTWARE,
28 evsel.open(cpus = cpus, threads = threads);
30 evlist.add(evsel)
/linux-master/tools/lib/perf/Documentation/examples/
H A Dcounting.c3 #include <perf/evsel.h>
22 struct perf_evsel *evsel; local
51 evsel = perf_evsel__new(&attr1);
52 if (!evsel) {
56 perf_evlist__add(evlist, evsel);
57 evsel = perf_evsel__new(&attr2);
58 if (!evsel) {
62 perf_evlist__add(evlist, evsel);
66 fprintf(stderr, "failed to open evsel\n");
72 perf_evlist__for_each_evsel(evlist, evsel) {
[all...]

Completed in 1266 milliseconds

12345678