Home | History | Annotate | Download | only in include

Lines Matching refs:methodID

526     jobject ToReflectedMethod(jclass cls, jmethodID methodID, jboolean isStatic)
527 { return functions->ToReflectedMethod(this, cls, methodID, isStatic); }
583 jobject NewObject(jclass clazz, jmethodID methodID, ...)
586 va_start(args, methodID);
587 jobject result = functions->NewObjectV(this, clazz, methodID, args);
592 jobject NewObjectV(jclass clazz, jmethodID methodID, va_list args)
593 { return functions->NewObjectV(this, clazz, methodID, args); }
595 jobject NewObjectA(jclass clazz, jmethodID methodID, jvalue* args)
596 { return functions->NewObjectA(this, clazz, methodID, args); }
608 _jtype Call##_jname##Method(jobject obj, jmethodID methodID, ...) \
612 va_start(args, methodID); \
613 result = functions->Call##_jname##MethodV(this, obj, methodID, \
619 _jtype Call##_jname##MethodV(jobject obj, jmethodID methodID, \
621 { return functions->Call##_jname##MethodV(this, obj, methodID, args); }
623 _jtype Call##_jname##MethodA(jobject obj, jmethodID methodID, \
625 { return functions->Call##_jname##MethodA(this, obj, methodID, args); }
642 void CallVoidMethod(jobject obj, jmethodID methodID, ...)
645 va_start(args, methodID);
646 functions->CallVoidMethodV(this, obj, methodID, args);
649 void CallVoidMethodV(jobject obj, jmethodID methodID, va_list args)
650 { functions->CallVoidMethodV(this, obj, methodID, args); }
651 void CallVoidMethodA(jobject obj, jmethodID methodID, jvalue* args)
652 { functions->CallVoidMethodA(this, obj, methodID, args); }
656 jmethodID methodID, ...) \
660 va_start(args, methodID); \
662 clazz, methodID, args); \
668 jmethodID methodID, va_list args) \
670 methodID, args); }
673 jmethodID methodID, jvalue* args) \
675 methodID, args); }
693 jmethodID methodID, ...)
696 va_start(args, methodID);
697 functions->CallNonvirtualVoidMethodV(this, obj, clazz, methodID, args);
701 jmethodID methodID, va_list args)
702 { functions->CallNonvirtualVoidMethodV(this, obj, clazz, methodID, args); }
704 jmethodID methodID, jvalue* args)
705 { functions->CallNonvirtualVoidMethodA(this, obj, clazz, methodID, args); }
752 _jtype CallStatic##_jname##Method(jclass clazz, jmethodID methodID, \
757 va_start(args, methodID); \
759 methodID, args); \
764 _jtype CallStatic##_jname##MethodV(jclass clazz, jmethodID methodID, \
766 { return functions->CallStatic##_jname##MethodV(this, clazz, methodID, \
769 _jtype CallStatic##_jname##MethodA(jclass clazz, jmethodID methodID, \
771 { return functions->CallStatic##_jname##MethodA(this, clazz, methodID, \
789 void CallStaticVoidMethod(jclass clazz, jmethodID methodID, ...)
792 va_start(args, methodID);
793 functions->CallStaticVoidMethodV(this, clazz, methodID, args);
796 void CallStaticVoidMethodV(jclass clazz, jmethodID methodID, va_list args)
797 { functions->CallStaticVoidMethodV(this, clazz, methodID, args); }
798 void CallStaticVoidMethodA(jclass clazz, jmethodID methodID, jvalue* args)
799 { functions->CallStaticVoidMethodA(this, clazz, methodID, args); }