Searched refs:nr_args (Results 1 – 8 of 8) sorted by relevance
/kernel/trace/ |
D | trace_probe.c | 804 tp->nr_args++; in traceprobe_parse_probe_arg() 918 for (i = 0; i < tp->nr_args; i++) { in __set_print_fmt() 935 for (i = 0; i < tp->nr_args; i++) { in __set_print_fmt() 985 for (i = 0; i < tp->nr_args; i++) { in traceprobe_define_arg_fields() 1038 for (i = 0; i < tp->nr_args; i++) in trace_probe_cleanup() 1185 if (a->nr_args < b->nr_args) in trace_probe_compare_arg_type() 1186 return a->nr_args + 1; in trace_probe_compare_arg_type() 1187 if (a->nr_args > b->nr_args) in trace_probe_compare_arg_type() 1188 return b->nr_args + 1; in trace_probe_compare_arg_type() 1190 for (i = 0; i < a->nr_args; i++) { in trace_probe_compare_arg_type() [all …]
|
D | trace_probe_tmpl.h | 220 for (i = 0; i < tp->nr_args; i++) { in __get_data_size() 243 for (i = 0; i < tp->nr_args; i++) { in store_trace_args() 258 print_probe_args(struct trace_seq *s, struct probe_arg *args, int nr_args, in print_probe_args() argument 264 for (i = 0; i < nr_args; i++) { in print_probe_args()
|
D | trace_kprobe.c | 495 for (i = 0; i < tk->tp.nr_args; i++) { in __register_trace_kprobe() 574 for (i = 0; i < orig->tp.nr_args; i++) { in trace_kprobe_has_same_kprobe() 580 if (i == orig->tp.nr_args) in trace_kprobe_has_same_kprobe() 1178 for (i = 0; i < tk->tp.nr_args; i++) in trace_kprobe_show() 1490 if (print_probe_args(s, tp->args, tp->nr_args, in print_kprobe_event() 1525 if (print_probe_args(s, tp->args, tp->nr_args, in print_kretprobe_event()
|
D | trace_eprobe.c | 78 for (i = 0; i < ep->tp.nr_args; i++) in eprobe_dyn_event_show() 314 if (print_probe_args(s, tp->args, tp->nr_args, in print_eprobe_event() 387 for (i = 0; i < tp->nr_args; i++) { in get_eprobe_size()
|
D | trace_uprobe.c | 428 for (i = 0; i < orig->tp.nr_args; i++) { in trace_uprobe_has_same_uprobe() 434 if (i == orig->tp.nr_args) in trace_uprobe_has_same_uprobe() 760 for (i = 0; i < tu->tp.nr_args; i++) in trace_uprobe_show() 1045 if (print_probe_args(s, tu->tp.args, tu->tp.nr_args, data, entry) < 0) in print_uprobe_event()
|
D | trace_probe.h | 251 unsigned int nr_args; member
|
D | bpf_trace.c | 1182 u64 nr_args = ((u64 *)ctx)[-1]; in BPF_CALL_3() local 1184 if ((u64) n >= nr_args) in BPF_CALL_3() 1201 u64 nr_args = ((u64 *)ctx)[-1]; in BPF_CALL_2() local 1203 *value = ((u64 *)ctx)[nr_args]; in BPF_CALL_2()
|
/kernel/bpf/ |
D | btf.c | 3928 u16 nr_args = btf_type_vlen(t), i; in btf_func_proto_log() local 3931 if (!nr_args) { in btf_func_proto_log() 3936 if (nr_args == 1 && !args[0].type) { in btf_func_proto_log() 3945 for (i = 1; i < nr_args - 1; i++) in btf_func_proto_log() 3950 if (nr_args > 1) { in btf_func_proto_log() 3951 const struct btf_param *last_arg = &args[nr_args - 1]; in btf_func_proto_log() 4433 u16 nr_args, i; in btf_func_proto_check() local 4438 nr_args = btf_type_vlen(t); in btf_func_proto_check() 4469 if (!nr_args) in btf_func_proto_check() 4473 if (!args[nr_args - 1].type) { in btf_func_proto_check() [all …]
|