| /tools/perf/util/ |
| A D | ordered-events.h | 26 struct ordered_events; 28 typedef int (*ordered_events__deliver_t)(struct ordered_events *oe, 36 struct ordered_events { struct 56 int ordered_events__queue(struct ordered_events *oe, union perf_event *event, argument 59 int ordered_events__flush(struct ordered_events *oe, enum oe_flush how); 60 int ordered_events__flush_time(struct ordered_events *oe, u64 timestamp); 63 void ordered_events__free(struct ordered_events *oe); 64 void ordered_events__reinit(struct ordered_events *oe); 65 u64 ordered_events__first_time(struct ordered_events *oe); 68 void ordered_events__set_alloc_size(struct ordered_events *oe, u64 size) in ordered_events__set_alloc_size() [all …]
|
| A D | ordered-events.c | 18 static void queue_event(struct ordered_events *oe, struct ordered_event *new) in queue_event() 64 static union perf_event *__dup_event(struct ordered_events *oe, in __dup_event() 78 static union perf_event *dup_event(struct ordered_events *oe, in dup_event() 99 static struct ordered_event *alloc_event(struct ordered_events *oe, in alloc_event() 172 ordered_events__new_event(struct ordered_events *oe, u64 timestamp, in ordered_events__new_event() 224 static int do_flush(struct ordered_events *oe, bool show_progress) in do_flush() 340 int ordered_events__flush(struct ordered_events *oe, enum oe_flush how) in ordered_events__flush() 350 u64 ordered_events__first_time(struct ordered_events *oe) in ordered_events__first_time() 375 unsigned int max, struct ordered_events *oe) in ordered_events_buffer__free() 387 void ordered_events__free(struct ordered_events *oe) in ordered_events__free() [all …]
|
| A D | tool.h | 16 struct ordered_events; 35 struct ordered_events *oe); 84 bool ordered_events; member 93 void perf_tool__init(struct perf_tool *tool, bool ordered_events);
|
| A D | top.h | 54 struct ordered_events *in; 55 struct ordered_events data[2];
|
| A D | tool.c | 133 struct ordered_events *oe __maybe_unused) in process_finished_round_stub() 253 void perf_tool__init(struct perf_tool *tool, bool ordered_events) in perf_tool__init() argument 255 tool->ordered_events = ordered_events; in perf_tool__init() 287 if (ordered_events) in perf_tool__init()
|
| A D | session.h | 75 struct ordered_events ordered_events; member 210 struct ordered_events *oe);
|
| A D | session.c | 132 ordered_events); in ordered_events__deliver_event() 156 ordered_events__init(&session->ordered_events, in __perf_session__new() 220 tool->ordered_events = false; in __perf_session__new() 782 struct ordered_events *oe) in perf_event__process_finished_round() 1401 struct ordered_events *oe = &session->ordered_events; in perf_session__process_user_event() 1670 if (tool->ordered_events) { in perf_session__process_event() 1709 const struct ordered_events *oe = &session->ordered_events; in perf_session__warn_order() 1842 struct ordered_events *oe = &session->ordered_events; in __perf_session__process_pipe_events() 1956 ordered_events__free(&session->ordered_events); in __perf_session__process_pipe_events() 2272 struct ordered_events *oe = &session->ordered_events; in __perf_session__process_events() [all …]
|
| A D | intel-bts.c | 606 if (!tool->ordered_events) { in intel_bts_process_event() 689 if (!tool->ordered_events) in intel_bts_flush()
|
| A D | arm-spe.c | 1295 if (!tool->ordered_events) { in arm_spe_process_event() 1380 if (!tool->ordered_events) in arm_spe_flush()
|
| A D | s390-cpumsf.c | 930 if (!tool->ordered_events) { in s390_cpumsf_process_event()
|
| A D | cs-etm.c | 913 if (!tool->ordered_events) in cs_etm__flush_events() 2823 if (!tool->ordered_events) { in cs_etm__process_event()
|
| A D | data-convert-bt.c | 1652 ordered_events__set_alloc_size(&session->ordered_events, in bt_convert__perf2ctf()
|
| A D | intel-pt.c | 3712 if (!tool->ordered_events) { in intel_pt_process_event() 3795 if (!tool->ordered_events) in intel_pt_flush()
|
| /tools/perf/ |
| A D | builtin-inject.c | 186 struct ordered_events *oe __maybe_unused) in perf_event__repipe_oe_synth() 194 struct ordered_events *oe __maybe_unused) in perf_event__drop_oe() 1444 gs->tool.ordered_events = true; in guest_session__start() 1843 struct ordered_events *oe) in host__finished_round() 2222 inject->tool.ordered_events = true; in __cmd_inject() 2236 inject->tool.ordered_events = true; in __cmd_inject() 2272 inject->tool.ordered_events = true; in __cmd_inject() 2433 bool ordered_events; in cmd_inject() local 2497 ordered_events = inject.jit_mode || inject.sched_stat || in cmd_inject() 2500 perf_tool__init(&inject.tool, ordered_events); in cmd_inject()
|
| A D | builtin-report.c | 1507 bool ordered_events = true; in cmd_report() local 1562 ordered_events = false; in cmd_report() 1593 perf_tool__init(&report.tool, ordered_events); in cmd_report() 1631 ordered_events__set_alloc_size(&session->ordered_events, in cmd_report()
|
| A D | builtin-top.c | 1091 static struct ordered_events *rotate_queues(struct perf_top *top) in rotate_queues() 1093 struct ordered_events *in = top->qe.in; in rotate_queues() 1108 struct ordered_events *out, *in = top->qe.in; in process_thread() 1144 static int deliver_event(struct ordered_events *qe, in deliver_event()
|
| A D | builtin-kvm.c | 1286 struct ordered_events *oe = &kvm->session->ordered_events; in perf_kvm__mmap_read() 1930 ordered_events__set_copy_on_queue(&kvm->session->ordered_events, true); in kvm_events_live()
|
| A D | builtin-trace.c | 231 struct ordered_events data; 4200 static int ordered_events__deliver_event(struct ordered_events *oe, in ordered_events__deliver_event() 4692 trace->tool.ordered_events = true; in trace__replay()
|
| A D | builtin-record.c | 2548 if (rec->tool.ordered_events && !evlist__sample_id_all(rec->evlist)) { in __cmd_record() 2550 rec->tool.ordered_events = false; in __cmd_record()
|
| A D | builtin-script.c | 2739 struct ordered_events *oe __maybe_unused) in process_finished_round_event() 2885 script->tool.ordered_events = false; in __cmd_script()
|
| A D | builtin-kwork.c | 1983 kwork->tool.ordered_events = true; in perf_kwork__timehist()
|
| /tools/perf/Documentation/ |
| A D | perf-config.txt | 688 Limit the size of ordered_events queue, so we could control
|