| 1457 | } |
| 1458 | |
| 1459 | jlong CallStaticLongMethod(jclass clazz, |
| 1460 | jmethodID methodID, ...) { |
| 1461 | va_list args; |
| 1462 | jlong result; |
| 1463 | va_start(args,methodID); |
| 1464 | result = functions->CallStaticLongMethodV(this,clazz,methodID,args); |
| 1465 | va_end(args); |
| 1466 | return result; |
| 1467 | } |
| 1468 | jlong CallStaticLongMethodV(jclass clazz, |
| 1469 | jmethodID methodID, va_list args) { |
| 1470 | return functions->CallStaticLongMethodV(this,clazz,methodID,args); |
nothing calls this directly
no test coverage detected