Symbol: schedstat_cpu
tools/lib/perf/include/perf/event.h
639
struct perf_record_schedstat_cpu schedstat_cpu;
tools/perf/builtin-inject.c
2858
inject.tool.schedstat_cpu = perf_event__repipe_op2_synth;
tools/perf/builtin-sched.c
4043
static struct schedstat_cpu *cpu_second_pass;
tools/perf/builtin-sched.c
4050
static void store_schedstat_cpu_diff(struct schedstat_cpu *after_workload)
tools/perf/builtin-sched.c
4220
static void summarize_schedstat_cpu(struct schedstat_cpu *summary_cpu,
tools/perf/builtin-sched.c
4221
struct schedstat_cpu *cptr,
tools/perf/builtin-sched.c
4273
struct schedstat_cpu *cptr, *summary_head = NULL;
tools/perf/builtin-sched.c
4281
cptr = list_first_entry(head, struct schedstat_cpu, cpu_list);
tools/perf/builtin-sched.c
4357
struct schedstat_cpu *cptr1 = list_first_entry(head1, struct schedstat_cpu, cpu_list);
tools/perf/builtin-sched.c
4360
struct schedstat_cpu *cptr2 = NULL;
tools/perf/builtin-sched.c
4389
cptr2 = list_first_entry(head2, struct schedstat_cpu, cpu_list);
tools/perf/builtin-sched.c
4402
cptr2 = list_first_entry(head2, struct schedstat_cpu, cpu_list);
tools/perf/builtin-sched.c
4585
this_cpu.cpu = event->schedstat_cpu.cpu;
tools/perf/builtin-sched.c
4598
struct schedstat_cpu *temp = zalloc(sizeof(*temp));
tools/perf/builtin-sched.c
4607
memcpy(temp->cpu_data, &event->schedstat_cpu, sizeof(*temp->cpu_data));
tools/perf/builtin-sched.c
4620
cpu_second_pass = list_first_entry(&cpu_head, struct schedstat_cpu,
tools/perf/builtin-sched.c
4632
struct schedstat_cpu *cpu_tail;
tools/perf/builtin-sched.c
4645
cpu_tail = list_last_entry(&cpu_head, struct schedstat_cpu, cpu_list);
tools/perf/builtin-sched.c
4659
struct schedstat_cpu *cptr, *n2;
tools/perf/builtin-sched.c
4684
sched->tool.schedstat_cpu = perf_sched__process_schedstat;
tools/perf/builtin-sched.c
4755
sched->tool.schedstat_cpu = perf_sched__process_schedstat;
tools/perf/util/event.c
578
struct perf_record_schedstat_cpu *cs = &event->schedstat_cpu;
tools/perf/util/event.c
598
event->schedstat_cpu.version);
tools/perf/util/session.c
2499
err = tool->schedstat_cpu(tool, session, event);
tools/perf/util/synthetic-events.c
2590
cs = &event->schedstat_cpu;
tools/perf/util/tool.c
387
tool->schedstat_cpu = process_schedstat_cpu_stub;
tools/perf/util/tool.c
484
CREATE_DELEGATE_OP2(schedstat_cpu);
tools/perf/util/tool.c
570
tool->tool.schedstat_cpu = delegate_schedstat_cpu;
tools/perf/util/tool.h
84
schedstat_cpu,