HomeSort by relevance Sort by last modified time
    Searched defs:SECCOMP_RET_ERRNO (Results 1 - 7 of 7) sorted by null

  /bionic/libc/kernel/uapi/linux/
seccomp.h 38 #define SECCOMP_RET_ERRNO 0x00050000U
  /external/kernel-headers/original/uapi/linux/
seccomp.h 39 #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */
  /external/minijail/
bpf.h 50 #define SECCOMP_RET_ERRNO 0x00050000U /* return -1 and set errno */
173 SECCOMP_RET_ERRNO | ((_errno) & SECCOMP_RET_DATA))
  /external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
seccomp_bpf_tests.c 60 #define SECCOMP_RET_ERRNO 0x00050000U // returns an errno
361 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO | E2BIG),
385 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO | 0),
529 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO),
1152 BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ERRNO | EINVAL),
    [all...]
  /external/minijail/tools/
bpf.py 70 SECCOMP_RET_ERRNO = 0x00050000
131 if (ins.k & SECCOMP_RET_ACTION_FULL) == SECCOMP_RET_ERRNO:
236 SECCOMP_RET_ERRNO | (errno & SECCOMP_RET_DATA))
  /external/seccomp-tests/linux/
seccomp_bpf.c 74 #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */
550 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ERRNO | E2BIG),
577 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ERRNO | 0),
604 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ERRNO | 4096),
761 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ERRNO),
    [all...]
  /external/linux-kselftest/tools/testing/selftests/seccomp/
seccomp_bpf.c 97 #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */
763 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ERRNO | errno), \
810 * 580c57f10768 ("seccomp: cap SECCOMP_RET_ERRNO data to MAX_ERRNO").
1004 BPF_STMT(BPF_RET|BPF_K, SECCOMP_RET_ERRNO),
    [all...]

Completed in 1059 milliseconds