Home
last modified time | relevance | path

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

/linux-2.6.39/tools/perf/util/
Dprobe-event.c993 struct probe_trace_event *tev) in parse_probe_trace_command() argument
995 struct probe_trace_point *tp = &tev->point; in parse_probe_trace_command()
1015 &pr, (float *)(void *)&tev->group, in parse_probe_trace_command()
1016 (float *)(void *)&tev->event); in parse_probe_trace_command()
1022 pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr); in parse_probe_trace_command()
1032 tev->nargs = argc - 2; in parse_probe_trace_command()
1033 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs); in parse_probe_trace_command()
1034 if (tev->args == NULL) { in parse_probe_trace_command()
1038 for (i = 0; i < tev->nargs; i++) { in parse_probe_trace_command()
1044 tev->args[i].name = strdup(argv[i + 2]); in parse_probe_trace_command()
[all …]
Dprobe-event.h106 extern char *synthesize_probe_trace_command(struct probe_trace_event *tev);
Dprobe-finder.c1540 struct probe_trace_event *tev; in add_probe_trace_event() local
1549 tev = &tf->tevs[tf->ntevs++]; in add_probe_trace_event()
1552 &tev->point); in add_probe_trace_event()
1556 pr_debug("Probe point found: %s+%lu\n", tev->point.symbol, in add_probe_trace_event()
1557 tev->point.offset); in add_probe_trace_event()
1560 tev->nargs = pf->pev->nargs; in add_probe_trace_event()
1561 tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs); in add_probe_trace_event()
1562 if (tev->args == NULL) in add_probe_trace_event()
1566 pf->tvar = &tev->args[i]; in add_probe_trace_event()