| 133 | } |
| 134 | |
| 135 | Status JniUtil::GetMethodID(JNIEnv* env, jclass class_ref, const char* method_str, |
| 136 | const char* method_signature, jmethodID* method_ref) { |
| 137 | *method_ref = env->GetMethodID(class_ref, method_str, method_signature); |
| 138 | RETURN_ERROR_IF_EXC(env); |
| 139 | return Status::OK(); |
| 140 | } |
| 141 | |
| 142 | Status JniUtil::GetStaticMethodID(JNIEnv* env, jclass class_ref, const char* method_str, |
| 143 | const char* method_signature, jmethodID* method_ref) { |
no test coverage detected