trace-event.h (4b0c53e9e1a2a785746b2d379a32cb70b4dbb2fd) | trace-event.h (959c2199d4c0e330d17f1f5234527e87132d5e07) |
---|---|
1#ifndef _PERF_UTIL_TRACE_EVENT_H 2#define _PERF_UTIL_TRACE_EVENT_H 3 4#include <traceevent/event-parse.h> 5#include "parse-events.h" 6 7struct machine; 8struct perf_sample; --- 4 unchanged lines hidden (view full) --- 13 14struct trace_event { 15 struct pevent *pevent; 16 struct plugin_list *plugin_list; 17}; 18 19int trace_event__init(struct trace_event *t); 20void trace_event__cleanup(struct trace_event *t); | 1#ifndef _PERF_UTIL_TRACE_EVENT_H 2#define _PERF_UTIL_TRACE_EVENT_H 3 4#include <traceevent/event-parse.h> 5#include "parse-events.h" 6 7struct machine; 8struct perf_sample; --- 4 unchanged lines hidden (view full) --- 13 14struct trace_event { 15 struct pevent *pevent; 16 struct plugin_list *plugin_list; 17}; 18 19int trace_event__init(struct trace_event *t); 20void trace_event__cleanup(struct trace_event *t); |
21int trace_event__register_resolver(struct machine *machine); | 21int trace_event__register_resolver(struct machine *machine, 22 pevent_func_resolver_t *func); |
22struct event_format* 23trace_event__tp_format(const char *sys, const char *name); 24 25int bigendian(void); 26 27void event_format__fprintf(struct event_format *event, 28 int cpu, void *data, int size, FILE *fp); 29 --- 65 unchanged lines hidden --- | 23struct event_format* 24trace_event__tp_format(const char *sys, const char *name); 25 26int bigendian(void); 27 28void event_format__fprintf(struct event_format *event, 29 int cpu, void *data, int size, FILE *fp); 30 --- 65 unchanged lines hidden --- |