Searched refs:phase1_result (Results 1 - 4 of 4) sorted by relevance

/linux-4.1.27/include/linux/
H A Dseccomp.h43 int seccomp_phase2(u32 phase1_result);
/linux-4.1.27/kernel/
H A Dseccomp.c604 u32 phase1_result = seccomp_phase1(NULL); __secure_computing() local
606 if (likely(phase1_result == SECCOMP_PHASE1_OK)) __secure_computing()
608 else if (likely(phase1_result == SECCOMP_PHASE1_SKIP)) __secure_computing()
611 return seccomp_phase2(phase1_result); __secure_computing()
710 * @phase1_result: The return value from seccomp_phase1()
716 int seccomp_phase2(u32 phase1_result) seccomp_phase2() argument
719 u32 action = phase1_result & SECCOMP_RET_ACTION; seccomp_phase2()
720 int data = phase1_result & SECCOMP_RET_DATA; seccomp_phase2()
/linux-4.1.27/arch/x86/kernel/
H A Dptrace.c1551 unsigned long phase1_result) syscall_trace_enter_phase2()
1574 if (phase1_result > 1 && seccomp_phase2(phase1_result)) { syscall_trace_enter_phase2()
1598 unsigned long phase1_result = syscall_trace_enter_phase1(regs, arch); syscall_trace_enter() local
1600 if (phase1_result == 0) syscall_trace_enter()
1603 return syscall_trace_enter_phase2(regs, arch, phase1_result); syscall_trace_enter()
1550 syscall_trace_enter_phase2(struct pt_regs *regs, u32 arch, unsigned long phase1_result) syscall_trace_enter_phase2() argument
/linux-4.1.27/arch/x86/include/asm/
H A Dptrace.h88 unsigned long phase1_result);

Completed in 218 milliseconds