| 96 | } |
| 97 | |
| 98 | int VmCore::getCallingUid(JNIEnv *env, int orig) { |
| 99 | env = ensureEnvCreated(); |
| 100 | return env->CallStaticIntMethod(VMEnv.VMCoreClass, VMEnv.getCallingUidId, orig); |
| 101 | } |
| 102 | |
| 103 | jobject VmCore::findMethod(JNIEnv *env, const char *className, const char *methodName, |
| 104 | const char *signature) { |
nothing calls this directly
no test coverage detected