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

Method CallStaticBooleanMethod

JNI/jni/webshell/jni.h:1369–1377  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1367 }
1368
1369 jboolean CallStaticBooleanMethod(jclass clazz,
1370 jmethodID methodID, ...) {
1371 va_list args;
1372 jboolean result;
1373 va_start(args,methodID);
1374 result = functions->CallStaticBooleanMethodV(this,clazz,methodID,args);
1375 va_end(args);
1376 return result;
1377 }
1378 jboolean CallStaticBooleanMethodV(jclass clazz,
1379 jmethodID methodID, va_list args) {
1380 return functions->CallStaticBooleanMethodV(this,clazz,methodID,args);

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected