Home
last modified time | relevance | path

Searched refs:SECCOMP_RET_KILL_PROCESS (Results 1 – 14 of 14) sorted by relevance

/external/strace/xlat/
Dseccomp_ret_action.h6 #if defined(SECCOMP_RET_KILL_PROCESS) || (defined(HAVE_DECL_SECCOMP_RET_KILL_PROCESS) && HAVE_DECL_…
8 static_assert((SECCOMP_RET_KILL_PROCESS) == (0x80000000U), "SECCOMP_RET_KILL_PROCESS != 0x80000000U…
11 # define SECCOMP_RET_KILL_PROCESS 0x80000000U
61 XLAT(SECCOMP_RET_KILL_PROCESS),
Dseccomp_ret_action.in1 SECCOMP_RET_KILL_PROCESS 0x80000000U
/external/strace/tests/
Dseccomp_get_action_avail.c72 # ifdef SECCOMP_RET_KILL_PROCESS in main()
73 { ARG_STR(SECCOMP_RET_KILL_PROCESS) }, in main()
/external/strace/tests-m32/
Dseccomp_get_action_avail.c72 # ifdef SECCOMP_RET_KILL_PROCESS in main()
73 { ARG_STR(SECCOMP_RET_KILL_PROCESS) }, in main()
/external/strace/tests-mx32/
Dseccomp_get_action_avail.c72 # ifdef SECCOMP_RET_KILL_PROCESS in main()
73 { ARG_STR(SECCOMP_RET_KILL_PROCESS) }, in main()
/external/minijail/
Dbpf.h50 #define SECCOMP_RET_KILL_PROCESS 0x80000000U /* kill the entire process */ macro
174 set_bpf_stmt((_block), BPF_RET+BPF_K, SECCOMP_RET_KILL_PROCESS)
Dsyscall_filter_unittest.cc1492 SECCOMP_RET_KILL_PROCESS); in TEST()
/external/kernel-headers/original/uapi/linux/
Dseccomp.h36 #define SECCOMP_RET_KILL_PROCESS 0x80000000U /* kill the process */ macro
/external/minijail/tools/
Dbpf.py67 SECCOMP_RET_KILL_PROCESS = 0x80000000 variable
126 if ins.k == SECCOMP_RET_KILL_PROCESS:
201 [SockFilter(BPF_RET, 0x00, 0x00, SECCOMP_RET_KILL_PROCESS)])
Dcompiler_unittest.py86 bpf.SECCOMP_RET_KILL_PROCESS),
/external/linux-kselftest/tools/testing/selftests/seccomp/
Dseccomp_bpf.c95 #ifndef SECCOMP_RET_KILL_PROCESS
96 #define SECCOMP_RET_KILL_PROCESS 0x80000000U /* kill the process */ macro
717 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_KILL_PROCESS), in kill_thread_or_group()
/external/rust/crates/libc/src/unix/linux_like/android/
Dmod.rs1807 pub const SECCOMP_RET_KILL_PROCESS: ::c_uint = 0x80000000; constant
/external/rust/crates/libc/src/unix/linux_like/linux/
Dmod.rs1772 pub const SECCOMP_RET_KILL_PROCESS: ::c_uint = 0x80000000; constant
/external/strace/
DChangeLog11016 Add SECCOMP_RET_KILL_PROCESS decoding support.
11021 * xlat/seccomp_ret_action.in: Add SECCOMP_RET_KILL_PROCESS introduced