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.cpp75 static jboolean testSyscallBlocked(JNIEnv *, jobject, jint nr) { in testSyscallBlocked() function
95 (void*) testSyscallBlocked },
/cts/hostsidetests/seccomp/app/src/android/seccomp/cts/app/
DSeccompDeviceTest.java222 Assert.assertTrue("Syscall " + nr + " not blocked", testSyscallBlocked(nr)); in testBlocked()
226 Assert.assertFalse("Syscall " + nr + " blocked", testSyscallBlocked(nr)); in testAllowed()
229 private static final native boolean testSyscallBlocked(int nr); in testSyscallBlocked() method in SeccompDeviceTest