Searched refs:e (Results 1 – 1 of 1) sorted by relevance
/libnativehelper/ |
D | JNIHelp.cpp | 66 JNIEnv* e = reinterpret_cast<JNIEnv*>(env); in findClass() local 67 return (*env)->FindClass(e, className); in findClass() 73 JNIEnv* e = reinterpret_cast<JNIEnv*>(env); in jniRegisterNativeMethods() local 81 e->FatalError(msg); in jniRegisterNativeMethods() 84 if ((*env)->RegisterNatives(e, c.get(), gMethods, numMethods) < 0) { in jniRegisterNativeMethods() 87 e->FatalError(msg); in jniRegisterNativeMethods() 99 JNIEnv* e = reinterpret_cast<JNIEnv*>(env); in getExceptionSummary() local 102 … scoped_local_ref<jclass> exceptionClass(env, (*env)->GetObjectClass(e, exception)); // can't fail in getExceptionSummary() 104 (*env)->GetObjectClass(e, exceptionClass.get())); // java.lang.Class, can't fail in getExceptionSummary() 106 (*env)->GetMethodID(e, classClass.get(), "getName", "()Ljava/lang/String;"); in getExceptionSummary() [all …]
|