Searched refs:tev (Results 1 – 3 of 3) sorted by relevance
993 struct probe_trace_event *tev) in parse_probe_trace_command() argument995 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 …]
106 extern char *synthesize_probe_trace_command(struct probe_trace_event *tev);
1540 struct probe_trace_event *tev; in add_probe_trace_event() local1549 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()