Lines Matching refs:ref
1392 (*fieldp)->ref = true; in parse_perf_probe_arg()
1404 (*fieldp)->ref = false; in parse_perf_probe_arg()
1407 (*fieldp)->ref = true; in parse_perf_probe_arg()
1421 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref); in parse_perf_probe_arg()
1430 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref); in parse_perf_probe_arg()
1641 field->ref ? "->" : ".", field->name); in synthesize_perf_probe_arg()
1738 static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref, in __synthesize_probe_trace_arg_ref() argument
1743 if (ref->next) { in __synthesize_probe_trace_arg_ref()
1744 depth = __synthesize_probe_trace_arg_ref(ref->next, buf, in __synthesize_probe_trace_arg_ref()
1750 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset); in __synthesize_probe_trace_arg_ref()
1765 struct probe_trace_arg_ref *ref = arg->ref; in synthesize_probe_trace_arg() local
1780 if (arg->value[0] == '@' && arg->ref) in synthesize_probe_trace_arg()
1781 ref = ref->next; in synthesize_probe_trace_arg()
1784 if (ref) { in synthesize_probe_trace_arg()
1785 depth = __synthesize_probe_trace_arg_ref(ref, &buf, in synthesize_probe_trace_arg()
1792 if (arg->value[0] == '@' && arg->ref) in synthesize_probe_trace_arg()
1794 arg->ref->offset); in synthesize_probe_trace_arg()
2026 struct probe_trace_arg_ref *ref, *next; in clear_probe_trace_event() local
2038 ref = tev->args[i].ref; in clear_probe_trace_event()
2039 while (ref) { in clear_probe_trace_event()
2040 next = ref->next; in clear_probe_trace_event()
2041 free(ref); in clear_probe_trace_event()
2042 ref = next; in clear_probe_trace_event()