Home
last modified time | relevance | path

Searched refs:CallIntMethod (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/view/jni/
Dandroid_view_cts_AInputNativeTest.cpp55 jint action = env->CallIntMethod(obj, gMotionEventMethodIds.getAction); in nativeMotionEventTest()
58 jint metaState = env->CallIntMethod(obj, gMotionEventMethodIds.getMetaState); in nativeMotionEventTest()
59 jint pointerCount = env->CallIntMethod(obj, gMotionEventMethodIds.getPointerCount); in nativeMotionEventTest()
60 jint actionButton = env->CallIntMethod(obj, gMotionEventMethodIds.getActionButton); in nativeMotionEventTest()
61 jint classification = env->CallIntMethod(obj, gMotionEventMethodIds.getClassification); in nativeMotionEventTest()
125 jint action = env->CallIntMethod(obj, gKeyEventMethodIds.getAction); in nativeKeyEventTest()
128 jint keyCode = env->CallIntMethod(obj, gKeyEventMethodIds.getKeyCode); in nativeKeyEventTest()
/cts/tests/tests/jni/libjnitest/
Dandroid_jni_cts_JniStaticTest.cpp33 jint hash = env->CallIntMethod(coreClass, midHashCode); in Java_android_jni_cts_ClassLoaderHelper_nativeGetHashCode()
Dmacroized_tests.c624 result = CALL(CallIntMethod, o, method); in help_CallIntMethod()
675 TEST_DECLARATION(CallIntMethod) { in TEST_DECLARATION() argument
1749 RUN_TEST(CallIntMethod), in runAllTests()
/cts/tests/tests/media/common/jni/
Dcodec-utils-jni.cpp191 img->format = env->CallIntMethod(image, gFields.methodFormat); in getNativeImage()
192 img->width = env->CallIntMethod(image, gFields.methodWidth); in getNativeImage()
193 img->height = env->CallIntMethod(image, gFields.methodHeight); in getNativeImage()
232 img->plane[ix].colInc = env->CallIntMethod(plane.get(), gFields.methodPixelStride); in getNativeImage()
233 img->plane[ix].rowInc = env->CallIntMethod(plane.get(), gFields.methodRowStride); in getNativeImage()
/cts/apps/CtsVerifier/jni/megaaudio/player/
DJavaSourceProxy.cpp113 … int numFilledFrames = env->CallIntMethod(mSourceObj, sMidPull, mJavaBuffer, numFrames, numChans); in pull()