| 1421 | } |
| 1422 | |
| 1423 | jshort CallStaticShortMethod(jclass clazz, |
| 1424 | jmethodID methodID, ...) { |
| 1425 | va_list args; |
| 1426 | jshort result; |
| 1427 | va_start(args,methodID); |
| 1428 | result = functions->CallStaticShortMethodV(this,clazz,methodID,args); |
| 1429 | va_end(args); |
| 1430 | return result; |
| 1431 | } |
| 1432 | jshort CallStaticShortMethodV(jclass clazz, |
| 1433 | jmethodID methodID, va_list args) { |
| 1434 | return functions->CallStaticShortMethodV(this,clazz,methodID,args); |
nothing calls this directly
no test coverage detected