.. | .. |
---|
10 | 10 | union perf_event; |
---|
11 | 11 | struct perf_tool; |
---|
12 | 12 | struct thread; |
---|
13 | | -struct plugin_list; |
---|
| 13 | +struct tep_plugin_list; |
---|
14 | 14 | |
---|
15 | 15 | struct trace_event { |
---|
16 | 16 | struct tep_handle *pevent; |
---|
17 | | - struct plugin_list *plugin_list; |
---|
| 17 | + struct tep_plugin_list *plugin_list; |
---|
18 | 18 | }; |
---|
19 | 19 | |
---|
20 | 20 | int trace_event__init(struct trace_event *t); |
---|
21 | 21 | void trace_event__cleanup(struct trace_event *t); |
---|
22 | 22 | int trace_event__register_resolver(struct machine *machine, |
---|
23 | 23 | tep_func_resolver_t *func); |
---|
24 | | -struct event_format* |
---|
| 24 | +struct tep_event* |
---|
25 | 25 | trace_event__tp_format(const char *sys, const char *name); |
---|
26 | 26 | |
---|
27 | | -struct event_format *trace_event__tp_format_id(int id); |
---|
| 27 | +struct tep_event *trace_event__tp_format_id(int id); |
---|
28 | 28 | |
---|
29 | 29 | int bigendian(void); |
---|
30 | 30 | |
---|
31 | | -void event_format__fprintf(struct event_format *event, |
---|
| 31 | +void event_format__fprintf(struct tep_event *event, |
---|
32 | 32 | int cpu, void *data, int size, FILE *fp); |
---|
33 | 33 | |
---|
34 | | -void event_format__print(struct event_format *event, |
---|
| 34 | +void event_format__print(struct tep_event *event, |
---|
35 | 35 | int cpu, void *data, int size); |
---|
36 | 36 | |
---|
37 | 37 | int parse_ftrace_file(struct tep_handle *pevent, char *buf, unsigned long size); |
---|
.. | .. |
---|
39 | 39 | char *buf, unsigned long size, char *sys); |
---|
40 | 40 | |
---|
41 | 41 | unsigned long long |
---|
42 | | -raw_field_value(struct event_format *event, const char *name, void *data); |
---|
| 42 | +raw_field_value(struct tep_event *event, const char *name, void *data); |
---|
43 | 43 | |
---|
44 | 44 | void parse_proc_kallsyms(struct tep_handle *pevent, char *file, unsigned int size); |
---|
45 | 45 | void parse_ftrace_printk(struct tep_handle *pevent, char *file, unsigned int size); |
---|
.. | .. |
---|
47 | 47 | |
---|
48 | 48 | ssize_t trace_report(int fd, struct trace_event *tevent, bool repipe); |
---|
49 | 49 | |
---|
50 | | -struct event_format *trace_find_next_event(struct tep_handle *pevent, |
---|
51 | | - struct event_format *event); |
---|
52 | | -unsigned long long read_size(struct event_format *event, void *ptr, int size); |
---|
| 50 | +unsigned long long read_size(struct tep_event *event, void *ptr, int size); |
---|
53 | 51 | unsigned long long eval_flag(const char *flag); |
---|
54 | 52 | |
---|
55 | 53 | int read_tracing_data(int fd, struct list_head *pattrs); |
---|
.. | .. |
---|
78 | 76 | int (*stop_script) (void); |
---|
79 | 77 | void (*process_event) (union perf_event *event, |
---|
80 | 78 | struct perf_sample *sample, |
---|
81 | | - struct perf_evsel *evsel, |
---|
| 79 | + struct evsel *evsel, |
---|
82 | 80 | struct addr_location *al); |
---|
| 81 | + void (*process_switch)(union perf_event *event, |
---|
| 82 | + struct perf_sample *sample, |
---|
| 83 | + struct machine *machine); |
---|
83 | 84 | void (*process_stat)(struct perf_stat_config *config, |
---|
84 | | - struct perf_evsel *evsel, u64 tstamp); |
---|
| 85 | + struct evsel *evsel, u64 tstamp); |
---|
85 | 86 | void (*process_stat_interval)(u64 tstamp); |
---|
86 | 87 | int (*generate_script) (struct tep_handle *pevent, const char *outfile); |
---|
87 | 88 | }; |
---|