Home
last modified time | relevance | path

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

/linux-4.4.14/tools/perf/util/
Dprobe-event.c240 static void clear_probe_trace_events(struct probe_trace_event *tevs, int ntevs) in clear_probe_trace_events() argument
245 clear_probe_trace_event(tevs + i); in clear_probe_trace_events()
555 static int add_exec_to_probe_trace_events(struct probe_trace_event *tevs, in add_exec_to_probe_trace_events() argument
570 tevs[i].point.address -= stext; in add_exec_to_probe_trace_events()
571 tevs[i].point.module = strdup(exec); in add_exec_to_probe_trace_events()
572 if (!tevs[i].point.module) { in add_exec_to_probe_trace_events()
576 tevs[i].uprobes = true; in add_exec_to_probe_trace_events()
582 static int add_module_to_probe_trace_events(struct probe_trace_event *tevs, in add_module_to_probe_trace_events() argument
604 tevs[i].point.module = strdup(module); in add_module_to_probe_trace_events()
605 if (!tevs[i].point.module) { in add_module_to_probe_trace_events()
[all …]
Dprobe-finder.h43 struct probe_trace_event **tevs);
89 struct probe_trace_event *tevs; /* Found trace events */ member
Dprobe-finder.c1195 tev = &tf->tevs[tf->ntevs++]; in add_probe_trace_event()
1252 struct probe_trace_event **tevs) in debuginfo__find_trace_events() argument
1260 *tevs = zalloc(sizeof(struct probe_trace_event) * tf.max_tevs); in debuginfo__find_trace_events()
1261 if (*tevs == NULL) in debuginfo__find_trace_events()
1264 tf.tevs = *tevs; in debuginfo__find_trace_events()
1270 clear_probe_trace_event(&tf.tevs[i]); in debuginfo__find_trace_events()
1271 zfree(tevs); in debuginfo__find_trace_events()
Dprobe-event.h90 struct probe_trace_event *tevs; member
Dbpf-loader.c254 struct probe_trace_event *tev = &priv->pev.tevs[i]; in bpf__unprobe()
315 tev = &pev->tevs[i]; in bpf__foreach_tev()
/linux-4.4.14/tools/perf/
Dbuiltin-probe.c338 struct probe_trace_event *tev = &pev->tevs[k]; in perf_add_probe_events()