Searched refs:C_JNIEnv (Results 1 – 3 of 3) sorted by relevance
/libnativehelper/include/nativehelper/ |
D | JNIHelp.h | 45 int jniRegisterNativeMethods(C_JNIEnv* env, const char* className, const JNINativeMethod* gMethods,… 61 int jniThrowException(C_JNIEnv* env, const char* className, const char* msg); 66 int jniThrowNullPointerException(C_JNIEnv* env, const char* msg); 71 int jniThrowRuntimeException(C_JNIEnv* env, const char* msg); 76 int jniThrowIOException(C_JNIEnv* env, int errnum); 89 jobject jniCreateFileDescriptor(C_JNIEnv* env, int fd); 94 int jniGetFDFromFileDescriptor(C_JNIEnv* env, jobject fileDescriptor); 99 void jniSetFileDescriptorOfFD(C_JNIEnv* env, jobject fileDescriptor, int value); 104 jobject jniGetReferent(C_JNIEnv* env, jobject ref); 110 void jniLogException(C_JNIEnv* env, int priority, const char* tag, jthrowable exception); [all …]
|
D | jni.h | 137 typedef const struct JNINativeInterface* C_JNIEnv; typedef
|
/libnativehelper/ |
D | JNIHelp.cpp | 41 scoped_local_ref(C_JNIEnv* env, T localRef = NULL) in scoped_local_ref() 62 C_JNIEnv* const mEnv; 68 static jclass findClass(C_JNIEnv* env, const char* className) { in findClass() 73 extern "C" int jniRegisterNativeMethods(C_JNIEnv* env, const char* className, in jniRegisterNativeMethods() 101 static bool getExceptionSummary(C_JNIEnv* env, jthrowable exception, std::string& result) { in getExceptionSummary() 152 static bool getStackTrace(C_JNIEnv* env, jthrowable exception, std::string& result) { in getStackTrace() 210 extern "C" int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) { in jniThrowException() 241 int jniThrowExceptionFmt(C_JNIEnv* env, const char* className, const char* fmt, va_list args) { in jniThrowExceptionFmt() 247 int jniThrowNullPointerException(C_JNIEnv* env, const char* msg) { in jniThrowNullPointerException() 251 int jniThrowRuntimeException(C_JNIEnv* env, const char* msg) { in jniThrowRuntimeException() [all …]
|