Lines Matching refs:vf
1100 struct local_vars_finder *vf = data; in copy_variables_cb() local
1101 struct probe_finder *pf = vf->pf; in copy_variables_cb()
1107 if (convert_variable_location(die_mem, vf->pf->addr, in copy_variables_cb()
1108 vf->pf->fb_ops, &pf->sp_die, in copy_variables_cb()
1110 vf->args[vf->nargs].var = (char *)dwarf_diename(die_mem); in copy_variables_cb()
1111 if (vf->args[vf->nargs].var == NULL) { in copy_variables_cb()
1112 vf->ret = -ENOMEM; in copy_variables_cb()
1115 pr_debug(" %s", vf->args[vf->nargs].var); in copy_variables_cb()
1116 vf->nargs++; in copy_variables_cb()
1120 if (dwarf_haspc(die_mem, vf->pf->addr)) in copy_variables_cb()
1132 struct local_vars_finder vf = {.pf = pf, .args = args, in expand_probe_args() local
1139 vf.nargs = n; in expand_probe_args()
1141 die_find_child(sc_die, copy_variables_cb, (void *)&vf, in expand_probe_args()
1143 pr_debug(" (%d)\n", vf.nargs - n); in expand_probe_args()
1144 if (vf.ret < 0) in expand_probe_args()
1145 return vf.ret; in expand_probe_args()
1146 n = vf.nargs; in expand_probe_args()