Searched refs:bin_args (Results 1 – 2 of 2) sorted by relevance
/kernel/bpf/ |
D | helpers.c | 764 u32 **bin_args, u32 num_args) in bpf_bprintf_prepare() argument 777 if (bin_args) { in bpf_bprintf_prepare() 782 *bin_args = (u32 *)tmp_buf; in bpf_bprintf_prepare() 988 u32 *bin_args; in BPF_CALL_5() local 998 err = bpf_bprintf_prepare(fmt, UINT_MAX, data, &bin_args, num_args); in BPF_CALL_5() 1002 err = bstr_printf(str, str_size, fmt, bin_args); in BPF_CALL_5()
|
/kernel/trace/ |
D | bpf_trace.c | 372 u32 *bin_args; in BPF_CALL_5() local 377 ret = bpf_bprintf_prepare(fmt, fmt_size, args, &bin_args, in BPF_CALL_5() 383 ret = bstr_printf(buf, sizeof(buf), fmt, bin_args); in BPF_CALL_5() 423 u32 *bin_args; in BPF_CALL_5() local 430 err = bpf_bprintf_prepare(fmt, fmt_size, data, &bin_args, num_args); in BPF_CALL_5() 434 seq_bprintf(m, fmt, bin_args); in BPF_CALL_5()
|