Home | History | Annotate | Download | only in nativehelper

Lines Matching refs:methodID

513     jobject ToReflectedMethod(jclass cls, jmethodID methodID, jboolean isStatic)
514 { return functions->ToReflectedMethod(this, cls, methodID, isStatic); }
570 jobject NewObject(jclass clazz, jmethodID methodID, ...)
573 va_start(args, methodID);
574 jobject result = functions->NewObjectV(this, clazz, methodID, args);
579 jobject NewObjectV(jclass clazz, jmethodID methodID, va_list args)
580 { return functions->NewObjectV(this, clazz, methodID, args); }
582 jobject NewObjectA(jclass clazz, jmethodID methodID, jvalue* args)
583 { return functions->NewObjectA(this, clazz, methodID, args); }
595 _jtype Call##_jname##Method(jobject obj, jmethodID methodID, ...) \
599 va_start(args, methodID); \
600 result = functions->Call##_jname##MethodV(this, obj, methodID, \
606 _jtype Call##_jname##MethodV(jobject obj, jmethodID methodID, \
608 { return functions->Call##_jname##MethodV(this, obj, methodID, args); }
610 _jtype Call##_jname##MethodA(jobject obj, jmethodID methodID, \
612 { return functions->Call##_jname##MethodA(this, obj, methodID, args); }
629 void CallVoidMethod(jobject obj, jmethodID methodID, ...)
632 va_start(args, methodID);
633 functions->CallVoidMethodV(this, obj, methodID, args);
636 void CallVoidMethodV(jobject obj, jmethodID methodID, va_list args)
637 { functions->CallVoidMethodV(this, obj, methodID, args); }
638 void CallVoidMethodA(jobject obj, jmethodID methodID, jvalue* args)
639 { functions->CallVoidMethodA(this, obj, methodID, args); }
643 jmethodID methodID, ...) \
647 va_start(args, methodID); \
649 clazz, methodID, args); \
655 jmethodID methodID, va_list args) \
657 methodID, args); }
660 jmethodID methodID, jvalue* args) \
662 methodID, args); }
680 jmethodID methodID, ...)
683 va_start(args, methodID);
684 functions->CallNonvirtualVoidMethodV(this, obj, clazz, methodID, args);
688 jmethodID methodID, va_list args)
689 { functions->CallNonvirtualVoidMethodV(this, obj, clazz, methodID, args); }
691 jmethodID methodID, jvalue* args)
692 { functions->CallNonvirtualVoidMethodA(this, obj, clazz, methodID, args); }
739 _jtype CallStatic##_jname##Method(jclass clazz, jmethodID methodID, \
744 va_start(args, methodID); \
746 methodID, args); \
751 _jtype CallStatic##_jname##MethodV(jclass clazz, jmethodID methodID, \
753 { return functions->CallStatic##_jname##MethodV(this, clazz, methodID, \
756 _jtype CallStatic##_jname##MethodA(jclass clazz, jmethodID methodID, \
758 { return functions->CallStatic##_jname##MethodA(this, clazz, methodID, \
776 void CallStaticVoidMethod(jclass clazz, jmethodID methodID, ...)
779 va_start(args, methodID);
780 functions->CallStaticVoidMethodV(this, clazz, methodID, args);
783 void CallStaticVoidMethodV(jclass clazz, jmethodID methodID, va_list args)
784 { functions->CallStaticVoidMethodV(this, clazz, methodID, args); }
785 void CallStaticVoidMethodA(jclass clazz, jmethodID methodID, jvalue* args)
786 { functions->CallStaticVoidMethodA(this, clazz, methodID, args); }