Searched refs:SECCOMP_RET_KILL (Results 1 – 14 of 14) sorted by relevance
/external/strace/xlat/ |
D | seccomp_ret_action.h | 11 #if defined(SECCOMP_RET_KILL) || (defined(HAVE_DECL_SECCOMP_RET_KILL) && HAVE_DECL_SECCOMP_RET_KILL) 12 XLAT(SECCOMP_RET_KILL),
|
D | seccomp_ret_action.in | 1 SECCOMP_RET_KILL
|
/external/libchrome/sandbox/linux/system_headers/ |
D | linux_seccomp.h | 87 #ifndef SECCOMP_RET_KILL 91 #define SECCOMP_RET_KILL 0x00000000U // Kill the task immediately macro
|
/external/minijail/ |
D | bpf.h | 43 #define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */ macro 149 set_bpf_stmt((_block), BPF_RET+BPF_K, SECCOMP_RET_KILL)
|
D | syscall_filter_unittest.c | 63 BPF_RET+BPF_K, SECCOMP_RET_KILL); \ 79 EXPECT_EQ_STMT(&(_filter)[2], BPF_RET+BPF_K, SECCOMP_RET_KILL); \ 571 SECCOMP_RET_KILL); in TEST_F() 604 SECCOMP_RET_KILL); in TEST_F()
|
/external/tlsdate/src/ |
D | seccomp-compat.h | 18 #define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */ macro
|
D | seccomp.c | 26 #define SECCOMP_FILTER_FAIL SECCOMP_RET_KILL
|
/external/kernel-headers/original/uapi/linux/ |
D | seccomp.h | 28 #define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */ macro
|
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/ |
D | seccomp_bpf_tests.c | 65 #ifndef SECCOMP_RET_KILL 66 #define SECCOMP_RET_KILL 0x00000000U // kill the task immediately macro 247 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL), in TEST_SIGNAL() 266 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL), in TEST_SIGNAL() 294 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL), in TEST_SIGNAL() 324 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL), in TEST_SIGNAL() 551 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL), in FIXTURE_SETUP() 1055 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL),
|
/external/strace/tests/ |
D | seccomp.c | 65 BPF_STMT(BPF_RET | BPF_K, SECCOMP_RET_KILL)
|
/external/libchrome/sandbox/linux/bpf_dsl/ |
D | bpf_dsl.cc | 35 return IsAction(SECCOMP_RET_ERRNO) || IsAction(SECCOMP_RET_KILL); in IsDeny() 255 return ResultExpr(new const ReturnResultExprImpl(SECCOMP_RET_KILL)); in Kill()
|
D | dump_bpf.cc | 124 } else if (insn.k == SECCOMP_RET_KILL) { in AppendInstruction()
|
D | verifier.cc | 202 case SECCOMP_RET_KILL: in EvaluateBPF()
|
D | bpf_dsl_unittest.cc | 97 EXPECT_EQ(SECCOMP_RET_KILL, Emulate(data)); in ExpectKill()
|