Lines Matching refs:tvar

165 				     struct probe_trace_arg *tvar)  in convert_variable_location()  argument
217 if (!tvar) in convert_variable_location()
221 tvar->value = zalloc(ret + 2); in convert_variable_location()
222 if (tvar->value == NULL) in convert_variable_location()
224 snprintf(tvar->value, ret + 2, "@%s", dwarf_diename(vr_die)); in convert_variable_location()
225 tvar->ref = alloc_trace_arg_ref((long)offs); in convert_variable_location()
226 if (tvar->ref == NULL) in convert_variable_location()
257 if (!tvar) in convert_variable_location()
268 tvar->value = strdup(regs); in convert_variable_location()
269 if (tvar->value == NULL) in convert_variable_location()
273 tvar->ref = alloc_trace_arg_ref((long)offs); in convert_variable_location()
274 if (tvar->ref == NULL) in convert_variable_location()
283 struct probe_trace_arg *tvar, in convert_variable_type() argument
286 struct probe_trace_arg_ref **ref_ptr = &tvar->ref; in convert_variable_type()
299 tvar->type = strdup(cast); in convert_variable_type()
300 return (tvar->type == NULL) ? -ENOMEM : 0; in convert_variable_type()
357 tvar->type = strdup(cast); in convert_variable_type()
358 return (tvar->type == NULL) ? -ENOMEM : 0; in convert_variable_type()
394 tvar->type = strdup(buf); in convert_variable_type()
395 if (tvar->type == NULL) in convert_variable_type()
538 &pf->sp_die, pf->machine, pf->tvar); in convert_variable()
548 pf->pvar->field, &pf->tvar->ref, in convert_variable()
553 ret = convert_variable_type(vr_die, pf->tvar, pf->pvar->type, in convert_variable()
568 return copy_to_probe_trace_arg(pf->tvar, pf->pvar); in find_variable()
571 pf->tvar->name = strdup(pf->pvar->name); in find_variable()
579 pf->tvar->name = buf; in find_variable()
581 if (pf->tvar->name == NULL) in find_variable()
1321 pf->tvar = &tev->args[i]; in add_probe_trace_event()