Home
last modified time | relevance | path

Searched refs:tevs (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/tools/perf/util/
Dprobe-event.c281 static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs) in clear_probe_trace_events() argument
286 clear_probe_trace_event(tevs + i); in clear_probe_trace_events()
494 static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs, in add_exec_to_probe_trace_events() argument
509 tevs[i].point.address -= stext; in add_exec_to_probe_trace_events()
510 tevs[i].point.module = strdup(exec); in add_exec_to_probe_trace_events()
511 if (!tevs[i].point.module) { in add_exec_to_probe_trace_events()
515 tevs[i].uprobes = true; in add_exec_to_probe_trace_events()
521 static int add_module_to_probe_trace_events(struct probe_trace_event *tevs, in add_module_to_probe_trace_events() argument
543 tevs[i].point.module = strdup(module); in add_module_to_probe_trace_events()
544 if (!tevs[i].point.module) { in add_module_to_probe_trace_events()
[all …]
Dprobe-finder.h40 struct probe_trace_event **tevs,
88 struct probe_trace_event *tevs; /* Found trace events */ member
Dprobe-finder.c1171 tev = &tf->tevs[tf->ntevs++]; in add_probe_trace_event()
1216 struct probe_trace_event **tevs, int max_tevs) in debuginfo__find_trace_events() argument
1224 *tevs = zalloc(sizeof(struct probe_trace_event) * max_tevs); in debuginfo__find_trace_events()
1225 if (*tevs == NULL) in debuginfo__find_trace_events()
1228 tf.tevs = *tevs; in debuginfo__find_trace_events()
1233 zfree(tevs); in debuginfo__find_trace_events()