Lines Matching refs:machine
46 static int add_hist_entries(struct hists *hists, struct machine *machine) in add_hist_entries() argument
69 if (perf_event__preprocess_sample(&event, machine, &al, in add_hist_entries()
113 typedef int (*test_fn_t)(struct perf_evsel *, struct machine *);
122 static int test1(struct perf_evsel *evsel, struct machine *machine) in test1() argument
150 err = add_hist_entries(hists, machine); in test1()
224 static int test2(struct perf_evsel *evsel, struct machine *machine) in test2() argument
250 err = add_hist_entries(hists, machine); in test2()
280 static int test3(struct perf_evsel *evsel, struct machine *machine) in test3() argument
304 err = add_hist_entries(hists, machine); in test3()
354 static int test4(struct perf_evsel *evsel, struct machine *machine) in test4() argument
382 err = add_hist_entries(hists, machine); in test4()
456 static int test5(struct perf_evsel *evsel, struct machine *machine) in test5() argument
485 err = add_hist_entries(hists, machine); in test5()
579 struct machine *machine; in test__hists_output() local
600 machine = setup_fake_machine(&machines); in test__hists_output()
601 if (!machine) in test__hists_output()
605 machine__fprintf(machine, stderr); in test__hists_output()
610 err = testcases[i](evsel, machine); in test__hists_output()