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