Searched refs:tev (Results 1 – 3 of 3) sorted by relevance
74 static void clear_probe_trace_event(struct probe_trace_event *tev);1388 struct probe_trace_event *tev) in parse_probe_trace_command() argument1390 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 …]
1161 struct probe_trace_event *tev; in add_probe_trace_event() local1171 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()
105 extern char *synthesize_probe_trace_command(struct probe_trace_event *tev);