| 1439 | } |
| 1440 | |
| 1441 | jint CallStaticIntMethod(jclass clazz, |
| 1442 | jmethodID methodID, ...) { |
| 1443 | va_list args; |
| 1444 | jint result; |
| 1445 | va_start(args,methodID); |
| 1446 | result = functions->CallStaticIntMethodV(this,clazz,methodID,args); |
| 1447 | va_end(args); |
| 1448 | return result; |
| 1449 | } |
| 1450 | jint CallStaticIntMethodV(jclass clazz, |
| 1451 | jmethodID methodID, va_list args) { |
| 1452 | return functions->CallStaticIntMethodV(this,clazz,methodID,args); |
nothing calls this directly
no test coverage detected