Home
last modified time | relevance | path

Searched refs:nargs (Results 1 – 7 of 7) sorted by relevance

/kernel/
Dauditsc.c1376 int nargs = context->socketcall.nargs; in show_special() local
1378 audit_log_format(ab, "nargs=%d", nargs); in show_special()
1379 for (i = 0; i < nargs; i++) in show_special()
2670 int __audit_socketcall(int nargs, unsigned long *args) in __audit_socketcall() argument
2674 if (nargs <= 0 || nargs > AUDITSC_ARGS || !args) in __audit_socketcall()
2677 context->socketcall.nargs = nargs; in __audit_socketcall()
2678 memcpy(context->socketcall.args, args, nargs * sizeof(unsigned long)); in __audit_socketcall()
Daudit.h156 int nargs; member
/kernel/bpf/
Dbtf.c5946 u32 i, nargs; in btf_distill_func_proto() local
5962 nargs = btf_type_vlen(func); in btf_distill_func_proto()
5963 if (nargs > MAX_BPF_FUNC_ARGS) { in btf_distill_func_proto()
5966 tname, nargs); in btf_distill_func_proto()
5978 for (i = 0; i < nargs; i++) { in btf_distill_func_proto()
5979 if (i == nargs - 1 && args[i].type == 0) { in btf_distill_func_proto()
6003 m->nr_args = nargs; in btf_distill_func_proto()
6259 u32 i, nargs, ref_id, ref_obj_id = 0; in btf_check_func_arg_match() local
6283 nargs = btf_type_vlen(t); in btf_check_func_arg_match()
6284 if (nargs > MAX_BPF_FUNC_REG_ARGS) { in btf_check_func_arg_match()
[all …]
Dverifier.c7953 u32 i, nargs, func_id, ptr_type_id; in check_kfunc_call() local
8065 nargs = btf_type_vlen(func_proto); in check_kfunc_call()
8067 for (i = 0; i < nargs; i++) { in check_kfunc_call()
/kernel/trace/
Dtrace_eprobe.c193 int nargs) in alloc_event_probe() argument
206 ep = kzalloc(struct_size(ep, tp.args, nargs), GFP_KERNEL); in alloc_event_probe()
Dtrace_uprobe.c339 alloc_trace_uprobe(const char *group, const char *event, int nargs, bool is_ret) in alloc_trace_uprobe() argument
344 tu = kzalloc(struct_size(tu, tp.args, nargs), GFP_KERNEL); in alloc_trace_uprobe()
Dtrace_kprobe.c262 int nargs, bool is_return) in alloc_trace_kprobe() argument
267 tk = kzalloc(struct_size(tk, tp.args, nargs), GFP_KERNEL); in alloc_trace_kprobe()