HomeSort by relevance Sort by last modified time
    Searched defs:pevent (Results 1 - 8 of 8) sorted by null

  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
trace-event.h 14 extern struct pevent *perf_pevent;
18 struct pevent *read_trace_init(int file_bigendian, int host_bigendian);
22 int parse_ftrace_file(struct pevent *pevent, char *buf, unsigned long size);
23 int parse_event_file(struct pevent *pevent,
26 struct pevent_record *trace_peek_data(struct pevent *pevent, int cpu);
32 void parse_proc_kallsyms(struct pevent *pevent, char *file, unsigned int size)
83 struct pevent *pevent; member in struct:scripting_context
    [all...]
session.h 35 struct pevent *pevent; member in struct:perf_session
trace-event-parse.c 31 struct pevent *read_trace_init(int file_bigendian, int host_bigendian)
33 struct pevent *pevent = pevent_alloc(); local
35 if (pevent != NULL) {
36 pevent_set_flag(pevent, PEVENT_NSEC_OUTPUT);
37 pevent_set_file_bigendian(pevent, file_bigendian);
38 pevent_set_host_bigendian(pevent, host_bigendian);
41 return pevent;
47 struct pevent *pevent = context->pevent local
    [all...]
trace-event-read.c 100 static unsigned int read4(struct pevent *pevent)
106 return __data2host4(pevent, data);
109 static unsigned long long read8(struct pevent *pevent)
115 return __data2host8(pevent, data);
162 static int read_proc_kallsyms(struct pevent *pevent)
167 size = read4(pevent);
181 parse_proc_kallsyms(pevent, buf, size)
359 struct pevent *pevent; local
    [all...]
python.c 86 static PyObject *pyrf_mmap_event__repr(struct pyrf_event *pevent)
94 pevent->event.mmap.pid, pevent->event.mmap.tid,
95 pevent->event.mmap.start, pevent->event.mmap.len,
96 pevent->event.mmap.pgoff, pevent->event.mmap.filename) < 0) {
128 static PyObject *pyrf_task_event__repr(struct pyrf_event *pevent)
132 pevent->event.header.type == PERF_RECORD_FORK ? "fork" : "exit",
133 pevent->event.fork.pid
356 struct pyrf_event *pevent; local
823 struct pyrf_event *pevent = (struct pyrf_event *)pyevent; local
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
parse-filter.c 169 filter_type->event = pevent_find_event(filter->pevent, id);
179 * @pevent: The pevent that this filter is associated with
181 struct event_filter *pevent_filter_alloc(struct pevent *pevent)
187 filter->pevent = pevent;
188 pevent_ref(pevent);
269 find_event(struct pevent *pevent, struct event_list **events
1177 struct pevent *pevent = filter->pevent; local
1720 struct pevent *pevent; local
1878 struct pevent *pevent = filter->pevent; local
    [all...]
event-parse.c 147 static int cmdline_init(struct pevent *pevent)
149 struct cmdline_list *cmdlist = pevent->cmdlist;
154 cmdlines = malloc(sizeof(*cmdlines) * pevent->cmdline_count);
168 qsort(cmdlines, pevent->cmdline_count, sizeof(*cmdlines), cmdline_cmp);
170 pevent->cmdlines = cmdlines;
171 pevent->cmdlist = NULL;
176 static const char *find_cmdline(struct pevent *pevent, int pid)
184 if (!pevent->cmdlines && cmdline_init(pevent)
3232 struct pevent *pevent = event->pevent; local
3488 struct pevent *pevent = event->pevent; local
3729 struct pevent *pevent = event->pevent; local
3880 struct pevent *pevent = event->pevent; local
4044 struct pevent *pevent = event->pevent; local
5518 struct pevent *pevent = calloc(1, sizeof(*pevent)); local
    [all...]
event-parse.h 88 /* ----------------------- pevent ----------------------- */
90 struct pevent;
98 typedef int (*pevent_plugin_load_func)(struct pevent *pevent);
119 * int PEVENT_PLUGIN_LOADER(struct pevent *pevent)
293 struct pevent *pevent; member in struct:event_format
383 struct pevent { struct
455 static inline void pevent_set_flag(struct pevent *pevent, int flag
805 struct pevent *pevent; member in struct:event_filter
    [all...]

Completed in 1535 milliseconds