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

  /external/minijail/
minijail0.c 171 " -H: Seccomp filter help message.\n"
176 " -L: Report blocked syscalls to syslog when using seccomp filter.\n"
198 " -s: Use seccomp mode 1 (not the same as -S).\n"
199 " -S <file>: Set seccomp filter using <file>.\n"
211 " -Y: Synchronize seccomp filters across thread group.\n"
240 int seccomp = -1; local
270 if (seccomp != -1 && seccomp != 1) {
274 seccomp = 1;
278 if (seccomp != -1 && seccomp != 2)
    [all...]
libminijail.c 50 /* Seccomp filter related flags. */
69 /* End seccomp filter related flags. */
124 int seccomp : 1; member in struct:minijail::__anon28816
175 * or are easier to set after execve(2) (e.g. seccomp filters).
341 j->flags.seccomp = 1;
770 * |errno| will be set to EINVAL when seccomp has not been
773 * in that case, disable seccomp and skip loading the filters.
776 warn("not loading seccomp filters, seccomp filter not "
784 * abort() if seccomp fails
    [all...]
  /external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
seccomp_bpf_tests.c 6 * Test code for seccomp bpf.
21 #include <linux/seccomp.h>
802 /* Make sure this is a seccomp event. */
936 #ifndef seccomp
937 int seccomp(unsigned int op, unsigned int flags, struct sock_fprog *filter) function
963 ret = seccomp(-1, 0, &prog);
969 ret = seccomp(SECCOMP_SET_MODE_STRICT, -1, NULL);
973 ret = seccomp(SECCOMP_SET_MODE_STRICT, 0, &prog);
979 ret = seccomp(SECCOMP_SET_MODE_FILTER, -1, &prog);
983 ret = seccomp(SECCOMP_SET_MODE_FILTER, 0, NULL)
    [all...]
  /external/linux-kselftest/tools/testing/selftests/seccomp/
seccomp_bpf.c 5 * Test code for seccomp bpf.
21 #include <linux/seccomp.h>
1070 /* Check if this is a seccomp event. */
1691 int seccomp(unsigned int op, unsigned int flags, void *args) function
    [all...]
  /external/seccomp-tests/linux/
seccomp_bpf.c 5 * Test code for seccomp bpf.
21 #include <linux/seccomp.h>
1066 /* Make sure this is a seccomp event. */
1505 int seccomp(unsigned int op, unsigned int flags, struct sock_fprog *filter) function
    [all...]

Completed in 163 milliseconds