Lines Matching defs:env
43 explicit scoped_local_ref(C_JNIEnv* env, T localRef = NULL) in scoped_local_ref()
70 static jclass findClass(C_JNIEnv* env, const char* className) { in findClass()
75 extern "C" int jniRegisterNativeMethods(C_JNIEnv* env, const char* className, in jniRegisterNativeMethods()
117 static bool getExceptionSummary(C_JNIEnv* env, jthrowable exception, std::string& result) { in getExceptionSummary()
168 static bool getStackTrace(C_JNIEnv* env, jthrowable exception, std::string& result) { in getStackTrace()
226 extern "C" int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) { in jniThrowException()
257 int jniThrowExceptionFmt(C_JNIEnv* env, const char* className, const char* fmt, va_list args) { in jniThrowExceptionFmt()
263 int jniThrowNullPointerException(C_JNIEnv* env, const char* msg) { in jniThrowNullPointerException()
267 int jniThrowRuntimeException(C_JNIEnv* env, const char* msg) { in jniThrowRuntimeException()
271 int jniThrowIOException(C_JNIEnv* env, int errnum) { in jniThrowIOException()
277 static std::string jniGetStackTrace(C_JNIEnv* env, jthrowable exception) { in jniGetStackTrace()
305 void jniLogException(C_JNIEnv* env, int priority, const char* tag, jthrowable exception) { in jniLogException()
327 jobject jniCreateFileDescriptor(C_JNIEnv* env, int fd) { in jniCreateFileDescriptor()
340 int jniGetFDFromFileDescriptor(C_JNIEnv* env, jobject fileDescriptor) { in jniGetFDFromFileDescriptor()
351 void jniSetFileDescriptorOfFD(C_JNIEnv* env, jobject fileDescriptor, int value) { in jniSetFileDescriptorOfFD()
358 jobject jniGetReferent(C_JNIEnv* env, jobject ref) { in jniGetReferent()