Home
last modified time | relevance | path

Searched refs:BPF_ASSERT_LE (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/sandbox/linux/seccomp-bpf-helpers/
Dsyscall_parameters_restrictions_unittests.cc68 BPF_ASSERT_LE(0, ts.tv_nsec); in CheckClock()
72 BPF_ASSERT_LE(0, ts.tv_sec); in CheckClock()
73 BPF_ASSERT_LE(0, ts.tv_nsec); in CheckClock()
Dbaseline_policy_unittest.cc51 BPF_ASSERT_LE(0, read_end.get()); in TestPipeOrSocketPair()
52 BPF_ASSERT_LE(0, write_end.get()); in TestPipeOrSocketPair()
80 BPF_ASSERT_LE(1, getpid()); in BPF_TEST_C()
81 BPF_ASSERT_LE(0, getuid()); in BPF_TEST_C()
/external/libchrome/sandbox/linux/seccomp-bpf/
Dbpf_tests.h67 #define BPF_ASSERT_LE(x, y) BPF_ASSERT((x) <= (y)) macro