Lines Matching refs:evlist
54 struct perf_evlist *evlist = NULL; in test__perf_time_to_tsc() local
71 evlist = perf_evlist__new(); in test__perf_time_to_tsc()
72 CHECK_NOT_NULL__(evlist); in test__perf_time_to_tsc()
74 perf_evlist__set_maps(evlist, cpus, threads); in test__perf_time_to_tsc()
76 CHECK__(parse_events(evlist, "cycles:u", NULL)); in test__perf_time_to_tsc()
78 perf_evlist__config(evlist, &opts, NULL); in test__perf_time_to_tsc()
80 evsel = perf_evlist__first(evlist); in test__perf_time_to_tsc()
86 CHECK__(perf_evlist__open(evlist)); in test__perf_time_to_tsc()
88 CHECK__(perf_evlist__mmap(evlist, UINT_MAX)); in test__perf_time_to_tsc()
90 pc = evlist->mmap[0].base; in test__perf_time_to_tsc()
100 perf_evlist__enable(evlist); in test__perf_time_to_tsc()
110 perf_evlist__disable(evlist); in test__perf_time_to_tsc()
112 for (i = 0; i < evlist->nr_mmaps; i++) { in test__perf_time_to_tsc()
113 md = &evlist->mmap[i]; in test__perf_time_to_tsc()
166 perf_evlist__delete(evlist); in test__perf_time_to_tsc()