| 213 | } |
| 214 | |
| 215 | int registerNatives(JNIEnv *env) { |
| 216 | if (!registerNativeMethods(env, VMCORE_CLASS, gMethods, |
| 217 | sizeof(gMethods) / sizeof(gMethods[0]))) |
| 218 | return JNI_FALSE; |
| 219 | return JNI_TRUE; |
| 220 | } |
| 221 | |
| 222 | void registerMethod(JNIEnv *jenv) { |
| 223 | registerNatives(jenv); |
no test coverage detected