Searched defs:message (Results 1 – 4 of 4) sorted by relevance
/libnativehelper/tests_mts/src/com/android/art/libnativehelper/ |
D | JniHelpTest.java | 37 private static native void throwException(String className, String message); in throwException() 41 private static native void throwNullPointerException(String message); in throwNullPointerException() 42 private static native void throwRuntimeException(String message); in throwRuntimeException() 54 final String message = "Because test"; in testThrowException() local 74 final String message = "Because another test"; in testThrowNullPointerException() local 84 final String message = "Because test again"; in testThrowRuntimeException() local
|
/libnativehelper/tests_mts/jni/ |
D | jni_helper_jni.cpp | 33 static void throwException(JNIEnv* env, jclass /*clazz*/, jstring className, jstring message) { in throwException() 51 jstring message) { in throwNullPointerException() 56 static void throwRuntimeException(JNIEnv* env, jclass /*clazz*/, jstring message) { in throwRuntimeException()
|
/libnativehelper/ |
D | JNIHelp.c | 106 jstring message = (jstring) (*env)->CallObjectMethod(env, thrown, getMessage); in GetExceptionSummary() local 360 int jniThrowException(JNIEnv* env, const char* className, const char* message) { in jniThrowException() 380 const char* message = platformStrError(errno_value, buffer, sizeof(buffer)); in jniThrowIOException() local
|
/libnativehelper/include/nativehelper/ |
D | JNIHelp.h | 159 jstring message = (jstring)env->CallObjectMethod(thrown, getMessage); in GetExceptionSummary() local 470 const char* message = platformStrError(errno_value, buffer, sizeof(buffer)); in jniThrowIOException() local
|