Home | History | Annotate | Download | only in include

Lines Matching refs:methodID

511     jobject ToReflectedMethod(jclass cls, jmethodID methodID, jboolean isStatic)
512 { return functions->ToReflectedMethod(this, cls, methodID, isStatic); }
568 jobject NewObject(jclass clazz, jmethodID methodID, ...)
571 va_start(args, methodID);
572 jobject result = functions->NewObjectV(this, clazz, methodID, args);
577 jobject NewObjectV(jclass clazz, jmethodID methodID, va_list args)
578 { return functions->NewObjectV(this, clazz, methodID, args); }
580 jobject NewObjectA(jclass clazz, jmethodID methodID, jvalue* args)
581 { return functions->NewObjectA(this, clazz, methodID, args); }
593 _jtype Call##_jname##Method(jobject obj, jmethodID methodID, ...) \
597 va_start(args, methodID); \
598 result = functions->Call##_jname##MethodV(this, obj, methodID, \
604 _jtype Call##_jname##MethodV(jobject obj, jmethodID methodID, \
606 { return functions->Call##_jname##MethodV(this, obj, methodID, args); }
608 _jtype Call##_jname##MethodA(jobject obj, jmethodID methodID, \
610 { return functions->Call##_jname##MethodA(this, obj, methodID, args); }
627 void CallVoidMethod(jobject obj, jmethodID methodID, ...)
630 va_start(args, methodID);
631 functions->CallVoidMethodV(this, obj, methodID, args);
634 void CallVoidMethodV(jobject obj, jmethodID methodID, va_list args)
635 { functions->CallVoidMethodV(this, obj, methodID, args); }
636 void CallVoidMethodA(jobject obj, jmethodID methodID, jvalue* args)
637 { functions->CallVoidMethodA(this, obj, methodID, args); }
641 jmethodID methodID, ...) \
645 va_start(args, methodID); \
647 clazz, methodID, args); \
653 jmethodID methodID, va_list args) \
655 methodID, args); }
658 jmethodID methodID, jvalue* args) \
660 methodID, args); }
678 jmethodID methodID, ...)
681 va_start(args, methodID);
682 functions->CallNonvirtualVoidMethodV(this, obj, clazz, methodID, args);
686 jmethodID methodID, va_list args)
687 { functions->CallNonvirtualVoidMethodV(this, obj, clazz, methodID, args); }
689 jmethodID methodID, jvalue* args)
690 { functions->CallNonvirtualVoidMethodA(this, obj, clazz, methodID, args); }
737 _jtype CallStatic##_jname##Method(jclass clazz, jmethodID methodID, \
742 va_start(args, methodID); \
744 methodID, args); \
749 _jtype CallStatic##_jname##MethodV(jclass clazz, jmethodID methodID, \
751 { return functions->CallStatic##_jname##MethodV(this, clazz, methodID, \
754 _jtype CallStatic##_jname##MethodA(jclass clazz, jmethodID methodID, \
756 { return functions->CallStatic##_jname##MethodA(this, clazz, methodID, \
774 void CallStaticVoidMethod(jclass clazz, jmethodID methodID, ...)
777 va_start(args, methodID);
778 functions->CallStaticVoidMethodV(this, clazz, methodID, args);
781 void CallStaticVoidMethodV(jclass clazz, jmethodID methodID, va_list args)
782 { functions->CallStaticVoidMethodV(this, clazz, methodID, args); }
783 void CallStaticVoidMethodA(jclass clazz, jmethodID methodID, jvalue* args)
784 { functions->CallStaticVoidMethodA(this, clazz, methodID, args); }