Home
last modified time | relevance | path

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

/linux-4.1.27/tools/perf/util/
Dprobe-event.c74 static void clear_probe_trace_event(struct probe_trace_event *tev);
1388 struct probe_trace_event *tev) in parse_probe_trace_command() argument
1390 struct probe_trace_point *tp = &tev->point; in parse_probe_trace_command()
1425 tev->group = strdup(fmt2_str); in parse_probe_trace_command()
1426 tev->event = strdup(fmt3_str); in parse_probe_trace_command()
1427 if (tev->group == NULL || tev->event == NULL) { in parse_probe_trace_command()
1431 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr); in parse_probe_trace_command()
1459 tev->nargs = argc - 2; in parse_probe_trace_command()
1460 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs); in parse_probe_trace_command()
1461 if (tev->args == NULL) { in parse_probe_trace_command()
[all …]
Dprobe-finder.c1161 struct probe_trace_event *tev; in add_probe_trace_event() local
1171 tev = &tf->tevs[tf->ntevs++]; in add_probe_trace_event()
1175 pf->pev->point.retprobe, &tev->point); in add_probe_trace_event()
1179 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol, in add_probe_trace_event()
1180 tev->point.offset); in add_probe_trace_event()
1191 tev->nargs = ret; in add_probe_trace_event()
1192 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs); in add_probe_trace_event()
1193 if (tev->args == NULL) { in add_probe_trace_event()
1199 for (i = 0; i < tev->nargs; i++) { in add_probe_trace_event()
1201 pf->tvar = &tev->args[i]; in add_probe_trace_event()
Dprobe-event.h105 extern char *synthesize_probe_trace_command(struct probe_trace_event *tev);