Searched refs:SECCOMP_RET_ERRNO (Results 1 – 17 of 17) sorted by relevance
/external/strace/xlat/ |
D | seccomp_ret_action.h | 17 #if defined(SECCOMP_RET_ERRNO) || (defined(HAVE_DECL_SECCOMP_RET_ERRNO) && HAVE_DECL_SECCOMP_RET_ER… 18 XLAT(SECCOMP_RET_ERRNO),
|
D | seccomp_ret_action.in | 3 SECCOMP_RET_ERRNO
|
/external/strace/tests/ |
D | seccomp.c | 52 && defined SECCOMP_RET_ERRNO \ 62 BPF_STMT(BPF_RET | BPF_K, SECCOMP_RET_ERRNO | (SECCOMP_RET_DATA & (err)))
|
/external/minijail/ |
D | bpf.h | 45 #define SECCOMP_RET_ERRNO 0x00050000U /* return -1 and set errno */ macro 156 SECCOMP_RET_ERRNO | ((_errno) & SECCOMP_RET_DATA))
|
D | syscall_filter_unittest.c | 479 SECCOMP_RET_ERRNO | (1 & SECCOMP_RET_DATA)); in TEST_F() 515 SECCOMP_RET_ERRNO | (1 & SECCOMP_RET_DATA)); in TEST_F()
|
/external/tlsdate/src/ |
D | seccomp-compat.h | 21 #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */ macro
|
D | seccomp.c | 37 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO|(_errno))
|
/external/kernel-headers/original/uapi/linux/ |
D | seccomp.h | 30 #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */ macro
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
D | read_binary_name_regtest.c | 38 BPF_STMT(BPF_RET + BPF_K, SECCOMP_RET_ERRNO | EPERM), in main()
|
/external/libchrome/sandbox/linux/system_headers/ |
D | linux_seccomp.h | 94 #define SECCOMP_RET_ERRNO 0x00050000U // Returns an errno macro
|
/external/libchrome/sandbox/linux/bpf_dsl/ |
D | bpf_dsl.cc | 35 return IsAction(SECCOMP_RET_ERRNO) || IsAction(SECCOMP_RET_KILL); in IsDeny() 251 return ResultExpr(new const ReturnResultExprImpl(SECCOMP_RET_ERRNO + err)); in Error()
|
D | dump_bpf.cc | 116 } else if ((insn.k & SECCOMP_RET_ACTION) == SECCOMP_RET_ERRNO) { in AppendInstruction()
|
D | verifier.cc | 201 case SECCOMP_RET_ERRNO: in EvaluateBPF()
|
D | policy_compiler.cc | 432 if (has_unsafe_traps_ && (ret & SECCOMP_RET_ACTION) == SECCOMP_RET_ERRNO) { in Return()
|
D | bpf_dsl_unittest.cc | 93 EXPECT_EQ(SECCOMP_RET_ERRNO | err, Emulate(data)); in ExpectErrno()
|
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/ |
D | seccomp_bpf_tests.c | 68 #define SECCOMP_RET_ERRNO 0x00050000U // returns an errno macro 369 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO | E2BIG), in TEST() 393 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO | 0), in TEST() 537 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO), in FIXTURE_SETUP() 1160 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO | EINVAL),
|
/external/openssh/ |
D | sandbox-seccomp-filter.c | 79 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO|(_errno))
|