• Home
  • Raw
  • Download

Lines Matching refs:tvar

811 				     struct probe_trace_arg *tvar)  in convert_variable_location()  argument
835 if (!tvar) in convert_variable_location()
839 tvar->value = zalloc(ret + 2); in convert_variable_location()
840 if (tvar->value == NULL) in convert_variable_location()
842 snprintf(tvar->value, ret + 2, "@%s", dwarf_diename(vr_die)); in convert_variable_location()
843 tvar->ref = alloc_trace_arg_ref((long)offs); in convert_variable_location()
844 if (tvar->ref == NULL) in convert_variable_location()
875 if (!tvar) in convert_variable_location()
886 tvar->value = strdup(regs); in convert_variable_location()
887 if (tvar->value == NULL) in convert_variable_location()
891 tvar->ref = alloc_trace_arg_ref((long)offs); in convert_variable_location()
892 if (tvar->ref == NULL) in convert_variable_location()
901 struct probe_trace_arg *tvar, in convert_variable_type() argument
904 struct probe_trace_arg_ref **ref_ptr = &tvar->ref; in convert_variable_type()
912 tvar->type = strdup(cast); in convert_variable_type()
913 return (tvar->type == NULL) ? -ENOMEM : 0; in convert_variable_type()
964 tvar->type = strdup(cast); in convert_variable_type()
965 return (tvar->type == NULL) ? -ENOMEM : 0; in convert_variable_type()
990 tvar->type = strdup(buf); in convert_variable_type()
991 if (tvar->type == NULL) in convert_variable_type()
1121 pf->tvar); in convert_variable()
1129 pf->pvar->field, &pf->tvar->ref, in convert_variable()
1134 ret = convert_variable_type(vr_die, pf->tvar, pf->pvar->type); in convert_variable()
1148 pf->tvar->value = strdup(pf->pvar->var); in find_variable()
1149 if (pf->tvar->value == NULL) in find_variable()
1152 pf->tvar->type = strdup(pf->pvar->type); in find_variable()
1153 if (pf->tvar->type == NULL) in find_variable()
1157 pf->tvar->name = strdup(pf->pvar->name); in find_variable()
1158 if (pf->tvar->name == NULL) in find_variable()
1161 pf->tvar->name = NULL; in find_variable()
1166 pf->tvar->name = strdup(pf->pvar->name); in find_variable()
1174 pf->tvar->name = strdup(buf); in find_variable()
1176 if (pf->tvar->name == NULL) in find_variable()
1629 pf->tvar = &tev->args[i]; in add_probe_trace_event()