Home | History | Annotate | Download | only in runtime

Lines Matching defs:args

267   jvalue args[2];
273 args[0].l = s.get();
276 args[0].l = cause;
279 args[0].l = s.get();
280 args[1].l = cause;
291 env, reinterpret_cast<jthrowable>(env->NewObjectA(exception_class, mid, args)));
614 va_list args;
615 va_start(args, mid);
618 jobject result = NewObjectV(env, java_class, mid, args);
619 va_end(args);
623 static jobject NewObjectV(JNIEnv* env, jclass java_class, jmethodID mid, va_list args) {
636 return CallStaticObjectMethodV(env, WellKnownClasses::java_lang_StringFactory, sf_mid, args);
643 CallNonvirtualVoidMethodV(env, local_result, java_class, mid, args);
650 static jobject NewObjectA(JNIEnv* env, jclass java_class, jmethodID mid, jvalue* args) {
663 return CallStaticObjectMethodA(env, WellKnownClasses::java_lang_StringFactory, sf_mid, args);
670 CallNonvirtualVoidMethodA(env, local_result, java_class, mid, args);
705 static jobject CallObjectMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
709 JValue result(InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args));
713 static jobject CallObjectMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
717 JValue result(InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args));
732 static jboolean CallBooleanMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
736 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetZ();
739 static jboolean CallBooleanMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
743 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetZ();
757 static jbyte CallByteMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
761 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetB();
764 static jbyte CallByteMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
768 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetB();
782 static jchar CallCharMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
786 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetC();
789 static jchar CallCharMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
793 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetC();
807 static jdouble CallDoubleMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
811 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetD();
814 static jdouble CallDoubleMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
818 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetD();
832 static jfloat CallFloatMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
836 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetF();
839 static jfloat CallFloatMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
843 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetF();
857 static jint CallIntMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
861 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetI();
864 static jint CallIntMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
868 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetI();
882 static jlong CallLongMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
886 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetJ();
889 static jlong CallLongMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
893 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetJ();
907 static jshort CallShortMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
911 return InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args).GetS();
914 static jshort CallShortMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
918 return InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args).GetS();
931 static void CallVoidMethodV(JNIEnv* env, jobject obj, jmethodID mid, va_list args) {
935 InvokeVirtualOrInterfaceWithVarArgs(soa, obj, mid, args);
938 static void CallVoidMethodA(JNIEnv* env, jobject obj, jmethodID mid, jvalue* args) {
942 InvokeVirtualOrInterfaceWithJValues(soa, obj, mid, args);
958 va_list args) {
962 JValue result(InvokeWithVarArgs(soa, obj, mid, args));
967 jvalue* args) {
971 JValue result(InvokeWithJValues(soa, obj, mid, args));
988 va_list args) {
992 return InvokeWithVarArgs(soa, obj, mid, args).GetZ();
996 jvalue* args) {
1000 return InvokeWithJValues(soa, obj, mid, args).GetZ();
1015 va_list args) {
1019 return InvokeWithVarArgs(soa, obj, mid, args).GetB();
1023 jvalue* args) {
1027 return InvokeWithJValues(soa, obj, mid, args).GetB();
1042 va_list args) {
1046 return InvokeWithVarArgs(soa, obj, mid, args).GetC();
1050 jvalue* args) {
1054 return InvokeWithJValues(soa, obj, mid, args).GetC();
1069 va_list args) {
1073 return InvokeWithVarArgs(soa, obj, mid, args).GetS();
1077 jvalue* args) {
1081 return InvokeWithJValues(soa, obj, mid, args).GetS();
1096 va_list args) {
1100 return InvokeWithVarArgs(soa, obj, mid, args).GetI();
1104 jvalue* args) {
1108 return InvokeWithJValues(soa, obj, mid, args).GetI();
1123 va_list args) {
1127 return InvokeWithVarArgs(soa, obj, mid, args).GetJ();
1131 jvalue* args) {
1135 return InvokeWithJValues(soa, obj, mid, args).GetJ();
1150 va_list args) {
1154 return InvokeWithVarArgs(soa, obj, mid, args).GetF();
1158 jvalue* args) {
1162 return InvokeWithJValues(soa, obj, mid, args).GetF();
1177 va_list args) {
1181 return InvokeWithVarArgs(soa, obj, mid, args).GetD();
1185 jvalue* args) {
1189 return InvokeWithJValues(soa, obj, mid, args).GetD();
1203 va_list args) {
1207 InvokeWithVarArgs(soa, obj, mid, args);
1211 jvalue* args) {
1215 InvokeWithJValues(soa, obj, mid, args);
1436 static jobject CallStaticObjectMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
1439 JValue result(InvokeWithVarArgs(soa, nullptr, mid, args));
1443 static jobject CallStaticObjectMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
1446 JValue result(InvokeWithJValues(soa, nullptr, mid, args));
1460 static jboolean CallStaticBooleanMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
1463 return InvokeWithVarArgs(soa, nullptr, mid, args).GetZ();
1466 static jboolean CallStaticBooleanMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
1469 return InvokeWithJValues(soa, nullptr, mid, args).GetZ();
1482 static jbyte CallStaticByteMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
1485 return InvokeWithVarArgs(soa, nullptr, mid, args).GetB();
1488 static jbyte CallStaticByteMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
1491 return InvokeWithJValues(soa, nullptr, mid, args).GetB();
1504 static jchar CallStaticCharMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
1507 return InvokeWithVarArgs(soa, nullptr, mid, args).GetC();
1510 static jchar CallStaticCharMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
1513 return InvokeWithJValues(soa, nullptr, mid, args).GetC();
1526 static jshort CallStaticShortMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
1529 return InvokeWithVarArgs(soa, nullptr, mid, args).GetS();
1532 static jshort CallStaticShortMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
1535 return InvokeWithJValues(soa, nullptr, mid, args).GetS();
1548 static jint CallStaticIntMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
1551 return InvokeWithVarArgs(soa, nullptr, mid, args).GetI();
1554 static jint CallStaticIntMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
1557 return InvokeWithJValues(soa, nullptr, mid, args).GetI();
1570 static jlong CallStaticLongMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
1573 return InvokeWithVarArgs(soa, nullptr, mid, args).GetJ();
1576 static jlong CallStaticLongMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
1579 return InvokeWithJValues(soa, nullptr, mid, args).GetJ();
1592 static jfloat CallStaticFloatMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
1595 return InvokeWithVarArgs(soa, nullptr, mid, args).GetF();
1598 static jfloat CallStaticFloatMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
1601 return InvokeWithJValues(soa, nullptr, mid, args).GetF();
1614 static jdouble CallStaticDoubleMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
1617 return InvokeWithVarArgs(soa, nullptr, mid, args).GetD();
1620 static jdouble CallStaticDoubleMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
1623 return InvokeWithJValues(soa, nullptr, mid, args).GetD();
1635 static void CallStaticVoidMethodV(JNIEnv* env, jclass, jmethodID mid, va_list args) {
1638 InvokeWithVarArgs(soa, nullptr, mid, args);
1641 static void CallStaticVoidMethodA(JNIEnv* env, jclass, jmethodID mid, jvalue* args) {
1644 InvokeWithJValues(soa, nullptr, mid, args);