Lines Matching refs:this_syscall
528 static void __secure_computing_strict(int this_syscall) in __secure_computing_strict() argument
536 if (*syscall_whitelist == this_syscall) in __secure_computing_strict()
543 audit_seccomp(this_syscall, SIGKILL, SECCOMP_RET_KILL); in __secure_computing_strict()
548 void secure_computing_strict(int this_syscall) in secure_computing_strict() argument
559 __secure_computing_strict(this_syscall); in secure_computing_strict()
577 static u32 __seccomp_phase1_filter(int this_syscall, struct seccomp_data *sd) in __seccomp_phase1_filter() argument
605 seccomp_send_sigsys(this_syscall, data); in __seccomp_phase1_filter()
616 audit_seccomp(this_syscall, SIGSYS, action); in __seccomp_phase1_filter()
623 audit_seccomp(this_syscall, 0, action); in __seccomp_phase1_filter()
654 int this_syscall = sd ? sd->nr : in seccomp_phase1() local
663 __secure_computing_strict(this_syscall); /* may call do_exit */ in seccomp_phase1()
667 return __seccomp_phase1_filter(this_syscall, sd); in seccomp_phase1()