Home
last modified time | relevance | path

Searched refs:this_syscall (Results 1 – 2 of 2) sorted by relevance

/linux-4.1.27/kernel/
Dseccomp.c570 static void __secure_computing_strict(int this_syscall) in __secure_computing_strict() argument
578 if (*syscall_whitelist == this_syscall) in __secure_computing_strict()
585 audit_seccomp(this_syscall, SIGKILL, SECCOMP_RET_KILL); in __secure_computing_strict()
590 void secure_computing_strict(int this_syscall) in secure_computing_strict() argument
597 __secure_computing_strict(this_syscall); in secure_computing_strict()
615 static u32 __seccomp_phase1_filter(int this_syscall, struct seccomp_data *sd) in __seccomp_phase1_filter() argument
643 seccomp_send_sigsys(this_syscall, data); in __seccomp_phase1_filter()
654 audit_seccomp(this_syscall, SIGSYS, action); in __seccomp_phase1_filter()
661 audit_seccomp(this_syscall, 0, action); in __seccomp_phase1_filter()
692 int this_syscall = sd ? sd->nr : in seccomp_phase1() local
[all …]
/linux-4.1.27/include/linux/
Dseccomp.h45 extern void secure_computing_strict(int this_syscall);
66 static inline void secure_computing_strict(int this_syscall) { return; } in secure_computing_strict() argument