MCPcopy Create free account
hub / github.com/Firebasky/Java / CallLongMethod

Method CallLongMethod

JNI/jni/jni.h:1000–1007  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

998 }
999
1000 jlong CallLongMethod(jobject obj, jmethodID methodID, ...) {
1001 va_list args;
1002 jlong result;
1003 va_start(args,methodID);
1004 result = functions->CallLongMethodV(this,obj,methodID,args);
1005 va_end(args);
1006 return result;
1007 }
1008 jlong CallLongMethodV(jobject obj, jmethodID methodID,
1009 va_list args) {
1010 return functions->CallLongMethodV(this,obj,methodID,args);

Callers

nothing calls this directly

Calls 1

CallLongMethodVMethod · 0.45

Tested by

no test coverage detected