Home
last modified time | relevance | path

Searched refs:CrashSIGSYS (Results 1 – 4 of 4) sorted by relevance

/external/libchrome/sandbox/linux/seccomp-bpf-helpers/
Dsyscall_parameters_restrictions.cc206 return If((flags & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS()); in RestrictMmapFlags()
216 return If((prot & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS()); in RestrictMprotectFlags()
245 If((long_arg & ~kAllowedMask) == 0, Allow()).Else(CrashSIGSYS())) in RestrictFcntlCommands()
246 .Default(CrashSIGSYS()); in RestrictFcntlCommands()
281 return CrashSIGSYS(); in RestrictKillTarget()
300 .Else(CrashSIGSYS()); in RestrictGetSetpriority()
321 return CrashSIGSYS(); in RestrictSchedTarget()
327 return Switch(pid).CASES((0, target_pid), Allow()).Default(CrashSIGSYS()); in RestrictPrlimit64()
332 return If(who == RUSAGE_SELF, Allow()).Else(CrashSIGSYS()); in RestrictGetrusage()
351 .Default(CrashSIGSYS()); in RestrictClockID()
Dbaseline_policy.cc202 return If(domain == AF_UNIX, Allow()).Else(CrashSIGSYS()); in EvaluateSyscallImpl()
240 .Else(CrashSIGSYS()); in EvaluateSyscallImpl()
247 return CrashSIGSYS(); in EvaluateSyscallImpl()
251 return CrashSIGSYS(); in EvaluateSyscallImpl()
281 return CrashSIGSYS(); in InvalidSyscall()
Dsigsys_handlers.h63 SANDBOX_EXPORT bpf_dsl::ResultExpr CrashSIGSYS();
Dsigsys_handlers.cc247 bpf_dsl::ResultExpr CrashSIGSYS() { in CrashSIGSYS() function