Home | History | Annotate | Download | only in libnativehelper

Lines Matching refs:C_JNIEnv

36  * Equivalent to ScopedLocalRef, but for C_JNIEnv instead. (And slightly more powerful.)
41 scoped_local_ref(C_JNIEnv* env, T localRef = NULL)
62 C_JNIEnv* const mEnv;
68 static jclass findClass(C_JNIEnv* env, const char* className) {
73 extern "C" int jniRegisterNativeMethods(C_JNIEnv* env, const char* className,
115 static bool getExceptionSummary(C_JNIEnv* env, jthrowable exception, std::string& result) {
166 static bool getStackTrace(C_JNIEnv* env, jthrowable exception, std::string& result) {
224 extern "C" int jniThrowException(C_JNIEnv* env, const char* className, const char* msg) {
255 int jniThrowExceptionFmt(C_JNIEnv* env, const char* className, const char* fmt, va_list args) {
261 int jniThrowNullPointerException(C_JNIEnv* env, const char* msg) {
265 int jniThrowRuntimeException(C_JNIEnv* env, const char* msg) {
269 int jniThrowIOException(C_JNIEnv* env, int errnum) {
275 static std::string jniGetStackTrace(C_JNIEnv* env, jthrowable exception) {
303 void jniLogException(C_JNIEnv* env, int priority, const char* tag, jthrowable exception) {
325 jobject jniCreateFileDescriptor(C_JNIEnv* env, int fd) {
338 int jniGetFDFromFileDescriptor(C_JNIEnv* env, jobject fileDescriptor) {
349 void jniSetFileDescriptorOfFD(C_JNIEnv* env, jobject fileDescriptor, int value) {
356 jobject jniGetReferent(C_JNIEnv* env, jobject ref) {