• Home
  • Raw
  • Download

Lines Matching defs:env

34     explicit scoped_local_ref(C_JNIEnv* env, T localRef = NULL)  in scoped_local_ref()
61 static jclass findClass(C_JNIEnv* env, const char* className) { in findClass()
66 MODULE_API int jniRegisterNativeMethods(C_JNIEnv* env, const char* className, in jniRegisterNativeMethods()
90 static bool getExceptionSummary(C_JNIEnv* env, jthrowable exception, std::string& result) { in getExceptionSummary()
141 static bool getStackTrace(C_JNIEnv* env, jthrowable exception, std::string& result) { in getStackTrace()
199 MODULE_API int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) { in jniThrowException()
230 MODULE_API int jniThrowExceptionFmt(C_JNIEnv* env, const char* className, const char* fmt, va_list … in jniThrowExceptionFmt()
236 MODULE_API int jniThrowNullPointerException(C_JNIEnv* env, const char* msg) { in jniThrowNullPointerException()
240 MODULE_API int jniThrowRuntimeException(C_JNIEnv* env, const char* msg) { in jniThrowRuntimeException()
244 MODULE_API int jniThrowIOException(C_JNIEnv* env, int errnum) { in jniThrowIOException()
250 static std::string jniGetStackTrace(C_JNIEnv* env, jthrowable exception) { in jniGetStackTrace()
278 MODULE_API void jniLogException(C_JNIEnv* env, int priority, const char* tag, jthrowable exception)… in jniLogException()
322 MODULE_API jobject jniCreateFileDescriptor(C_JNIEnv* env, int fd) { in jniCreateFileDescriptor()
334 MODULE_API int jniGetFDFromFileDescriptor(C_JNIEnv* env, jobject fileDescriptor) { in jniGetFDFromFileDescriptor()
344 MODULE_API void jniSetFileDescriptorOfFD(C_JNIEnv* env, jobject fileDescriptor, int value) { in jniSetFileDescriptorOfFD()
353 MODULE_API jlong jniGetOwnerIdFromFileDescriptor(C_JNIEnv* env, jobject fileDescriptor) { in jniGetOwnerIdFromFileDescriptor()
358 MODULE_API jarray jniGetNioBufferBaseArray(C_JNIEnv* env, jobject nioBuffer) { in jniGetNioBufferBaseArray()
366 MODULE_API int jniGetNioBufferBaseArrayOffset(C_JNIEnv* env, jobject nioBuffer) { in jniGetNioBufferBaseArrayOffset()
373 MODULE_API jlong jniGetNioBufferPointer(C_JNIEnv* env, jobject nioBuffer) { in jniGetNioBufferPointer()
385 MODULE_API jlong jniGetNioBufferFields(C_JNIEnv* env, jobject nioBuffer, in jniGetNioBufferFields()
395 MODULE_API jobject jniGetReferent(C_JNIEnv* env, jobject ref) { in jniGetReferent()
400 MODULE_API jstring jniCreateString(C_JNIEnv* env, const jchar* unicodeChars, jsize len) { in jniCreateString()