Lines Matching defs:nargs
1375 int nargs = context->socketcall.nargs;
1377 audit_log_format(ab, "nargs=%d", nargs);
1378 for (i = 0; i < nargs; i++)
2611 * @nargs: number of args, which should not be more than AUDITSC_ARGS.
2615 int __audit_socketcall(int nargs, unsigned long *args)
2619 if (nargs <= 0 || nargs > AUDITSC_ARGS || !args)
2622 context->socketcall.nargs = nargs;
2623 memcpy(context->socketcall.args, args, nargs * sizeof(unsigned long));