Searched refs:bin_args (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/kernel/bpf/ |
D | helpers.c | 804 u32 **bin_args, u32 num_args) in bpf_bprintf_prepare() argument 817 if (bin_args) { in bpf_bprintf_prepare() 822 *bin_args = (u32 *)tmp_buf; in bpf_bprintf_prepare() 1026 u32 *bin_args; in BPF_CALL_5() local 1036 err = bpf_bprintf_prepare(fmt, UINT_MAX, data, &bin_args, num_args); in BPF_CALL_5() 1040 err = bstr_printf(str, str_size, fmt, bin_args); in BPF_CALL_5()
|
/linux-6.1.9/kernel/trace/ |
D | bpf_trace.c | 380 u32 *bin_args; in BPF_CALL_5() local 385 ret = bpf_bprintf_prepare(fmt, fmt_size, args, &bin_args, in BPF_CALL_5() 391 ret = bstr_printf(buf, sizeof(buf), fmt, bin_args); in BPF_CALL_5() 435 u32 *bin_args; in BPF_CALL_4() local 442 ret = bpf_bprintf_prepare(fmt, fmt_size, data, &bin_args, num_args); in BPF_CALL_4() 447 ret = bstr_printf(buf, sizeof(buf), fmt, bin_args); in BPF_CALL_4() 477 u32 *bin_args; in BPF_CALL_5() local 484 err = bpf_bprintf_prepare(fmt, fmt_size, data, &bin_args, num_args); in BPF_CALL_5() 488 seq_bprintf(m, fmt, bin_args); in BPF_CALL_5()
|