Searched refs:SECCOMP_RET_KILL (Results 1 - 20 of 20) sorted by relevance

/external/strace/xlat/
H A Dseccomp_ret_action.h11 #if defined(SECCOMP_RET_KILL) || (defined(HAVE_DECL_SECCOMP_RET_KILL) && HAVE_DECL_SECCOMP_RET_KILL)
12 XLAT(SECCOMP_RET_KILL),
/external/libchrome/sandbox/linux/system_headers/
H A Dlinux_seccomp.h87 #ifndef SECCOMP_RET_KILL
91 #define SECCOMP_RET_KILL 0x00000000U // Kill the task immediately macro
/external/kernel-headers/original/uapi/linux/
H A Dseccomp.h28 #define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */ macro
/external/minijail/
H A Dsyscall_filter_unittest_macros.h73 BPF_RET+BPF_K, SECCOMP_RET_KILL); \
96 EXPECT_EQ_STMT(&(_filter)[2], BPF_RET+BPF_K, SECCOMP_RET_KILL); \
H A Dbpf.h48 #define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */ macro
154 set_bpf_stmt((_block), BPF_RET+BPF_K, SECCOMP_RET_KILL)
H A Dsyscall_filter_unittest.cc410 /* Fourth block is SECCOMP_RET_KILL. */
451 /* Fourth block is SECCOMP_RET_KILL. */
493 /* Fourth block is SECCOMP_RET_KILL. */
538 /* Fourth block is SECCOMP_RET_KILL. */
595 /* Seventh block is SECCOMP_RET_KILL. */
835 * Sixth block is NOT SECCOMP_RET_ERRNO, it should be SECCOMP_RET_KILL.
1039 /* Fourth block is SECCOMP_RET_KILL. */
1084 SECCOMP_RET_KILL);
1167 SECCOMP_RET_KILL);
1313 SECCOMP_RET_KILL);
[all...]
/external/strace/tests/
H A Dprctl-seccomp-filter-v.c64 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)
118 printf("BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)");
H A Dseccomp-filter-v.c64 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)
103 "BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)";
/external/strace/tests-m32/
H A Dprctl-seccomp-filter-v.c64 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)
118 printf("BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)");
H A Dseccomp-filter-v.c64 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)
103 "BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)";
/external/strace/tests-mx32/
H A Dprctl-seccomp-filter-v.c64 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)
118 printf("BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)");
H A Dseccomp-filter-v.c64 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)
103 "BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL)";
/external/libchrome/sandbox/linux/bpf_dsl/
H A Ddump_bpf.cc124 } else if (insn.k == SECCOMP_RET_KILL) {
H A Dbpf_dsl.cc35 return IsAction(SECCOMP_RET_ERRNO) || IsAction(SECCOMP_RET_KILL);
248 return std::make_shared<ReturnResultExprImpl>(SECCOMP_RET_KILL);
H A Dverifier.cc202 case SECCOMP_RET_KILL:
H A Dbpf_dsl_unittest.cc97 EXPECT_EQ(SECCOMP_RET_KILL, Emulate(data));
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
H A Dseccomp_bpf_tests.c65 #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),
266 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL),
294 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL),
324 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL),
551 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL),
1055 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL),
/external/linux-kselftest/tools/testing/selftests/seccomp/
H A Dseccomp_bpf.c71 #ifndef SECCOMP_RET_KILL
72 #define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */ macro
391 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
412 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
445 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
484 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
775 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
1570 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
1632 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
1843 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
[all...]
/external/openssh/
H A Dsandbox-seccomp-filter.c68 #define SECCOMP_FILTER_FAIL SECCOMP_RET_KILL
/external/seccomp-tests/linux/
H A Dseccomp_bpf.c71 #ifndef SECCOMP_RET_KILL
72 #define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */ macro
391 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
412 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
445 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
484 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
775 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
1657 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),
2087 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL),

Completed in 619 milliseconds