| 1385 | } |
| 1386 | |
| 1387 | jbyte CallStaticByteMethod(jclass clazz, |
| 1388 | jmethodID methodID, ...) { |
| 1389 | va_list args; |
| 1390 | jbyte result; |
| 1391 | va_start(args,methodID); |
| 1392 | result = functions->CallStaticByteMethodV(this,clazz,methodID,args); |
| 1393 | va_end(args); |
| 1394 | return result; |
| 1395 | } |
| 1396 | jbyte CallStaticByteMethodV(jclass clazz, |
| 1397 | jmethodID methodID, va_list args) { |
| 1398 | return functions->CallStaticByteMethodV(this,clazz,methodID,args); |
nothing calls this directly
no test coverage detected