Lines Matching refs:ref
1279 (*fieldp)->ref = true; in parse_perf_probe_arg()
1291 (*fieldp)->ref = false; in parse_perf_probe_arg()
1294 (*fieldp)->ref = true; in parse_perf_probe_arg()
1308 pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref); in parse_perf_probe_arg()
1317 pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref); in parse_perf_probe_arg()
1507 field->ref ? "->" : ".", field->name); in synthesize_perf_probe_arg()
1604 static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref, in __synthesize_probe_trace_arg_ref() argument
1609 if (ref->next) { in __synthesize_probe_trace_arg_ref()
1610 depth = __synthesize_probe_trace_arg_ref(ref->next, buf, in __synthesize_probe_trace_arg_ref()
1616 ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset); in __synthesize_probe_trace_arg_ref()
1631 struct probe_trace_arg_ref *ref = arg->ref; in synthesize_probe_trace_arg() local
1646 if (arg->value[0] == '@' && arg->ref) in synthesize_probe_trace_arg()
1647 ref = ref->next; in synthesize_probe_trace_arg()
1650 if (ref) { in synthesize_probe_trace_arg()
1651 depth = __synthesize_probe_trace_arg_ref(ref, &buf, in synthesize_probe_trace_arg()
1658 if (arg->value[0] == '@' && arg->ref) in synthesize_probe_trace_arg()
1660 arg->ref->offset); in synthesize_probe_trace_arg()
1874 struct probe_trace_arg_ref *ref, *next; in clear_probe_trace_event() local
1885 ref = tev->args[i].ref; in clear_probe_trace_event()
1886 while (ref) { in clear_probe_trace_event()
1887 next = ref->next; in clear_probe_trace_event()
1888 free(ref); in clear_probe_trace_event()
1889 ref = next; in clear_probe_trace_event()