Home
last modified time | relevance | path

Searched refs:testSyscallBlocked (Results 1 – 2 of 2) sorted by relevance

/cts/hostsidetests/seccomp/app/jni/
Dandroid_seccomp_cts_app_SeccompDeviceTest.cpp77 static jboolean testSyscallBlocked(JNIEnv *, jobject, jint nr) { in testSyscallBlocked() function
101 (void*) testSyscallBlocked },
/cts/hostsidetests/seccomp/app/src/android/seccomp/cts/app/
DSeccompDeviceTest.java221 Assert.assertTrue("Syscall " + nr + " not blocked", testSyscallBlocked(nr)); in testBlocked()
225 Assert.assertFalse("Syscall " + nr + " blocked", testSyscallBlocked(nr)); in testAllowed()
228 private static final native boolean testSyscallBlocked(int nr); in testSyscallBlocked() method in SeccompDeviceTest