Home
last modified time | relevance | path

Searched refs:e (Results 1 – 1 of 1) sorted by relevance

/libnativehelper/
DJNIHelp.cpp62 JNIEnv* e = reinterpret_cast<JNIEnv*>(env); in findClass() local
63 return (*env)->FindClass(e, className); in findClass()
69 JNIEnv* e = reinterpret_cast<JNIEnv*>(env); in jniRegisterNativeMethods() local
79 if ((*env)->RegisterNatives(e, c.get(), gMethods, numMethods) < 0) { in jniRegisterNativeMethods()
93 JNIEnv* e = reinterpret_cast<JNIEnv*>(env); in getExceptionSummary0() local
96 … scoped_local_ref<jclass> exceptionClass(env, (*env)->GetObjectClass(e, exception)); // can't fail in getExceptionSummary0()
98 (*env)->GetObjectClass(e, exceptionClass.get())); // java.lang.Class, can't fail in getExceptionSummary0()
100 (*env)->GetMethodID(e, classClass.get(), "getName", "()Ljava/lang/String;"); in getExceptionSummary0()
102 (jstring) (*env)->CallObjectMethod(e, exceptionClass.get(), classGetNameMethod)); in getExceptionSummary0()
108 const char* classNameChars = (*env)->GetStringUTFChars(e, classNameStr.get(), NULL); in getExceptionSummary0()
[all …]