Home
last modified time | relevance | path

Searched defs:className (Results 1 – 5 of 5) sorted by relevance

/libnativehelper/include_platform_header_only/nativehelper/
Djni_macros.h206 #define NATIVE_METHOD(className, functionName, signature) \ argument
209 #define OVERLOADED_NATIVE_METHOD(className, functionName, signature, identifier) \ argument
212 #define NATIVE_METHOD_AUTOSIG(className, functionName) \ argument
215 #define FAST_NATIVE_METHOD(className, functionName, signature) \ argument
218 #define OVERLOADED_FAST_NATIVE_METHOD(className, functionName, signature, identifier) \ argument
221 #define FAST_NATIVE_METHOD_AUTOSIG(className, functionName) \ argument
224 #define CRITICAL_NATIVE_METHOD(className, functionName, signature) \ argument
227 #define OVERLOADED_CRITICAL_NATIVE_METHOD(className, functionName, signature, identifier) \ argument
230 #define CRITICAL_NATIVE_METHOD_AUTOSIG(className, functionName) \ argument
/libnativehelper/
DJNIHelp.c54 const char* className, in FindMethod()
84 jstring className = (jstring) (*env)->CallObjectMethod(env, exceptionClass, getName); in GetExceptionSummary() local
223 static void DiscardPendingException(JNIEnv* env, const char* className) { in DiscardPendingException()
239 static int ThrowException(JNIEnv* env, const char* className, const char* ctorSig, ...) { in ThrowException()
309 #define THROW_EXCEPTION_WITH_MESSAGE(env, className, ctorSig, msg, ...) ({ \ argument
321 int jniRegisterNativeMethods(JNIEnv* env, const char* className, in jniRegisterNativeMethods()
360 int jniThrowException(JNIEnv* env, const char* className, const char* message) { in jniThrowException()
364 int jniThrowExceptionFmt(JNIEnv* env, const char* className, const char* fmt, va_list args) { in jniThrowExceptionFmt()
/libnativehelper/include/nativehelper/
DJNIHelp.h107 [[maybe_unused]] static jmethodID FindMethod(JNIEnv* env, const char* className, in FindMethod()
138 jstring className = (jstring)env->CallObjectMethod(exceptionClass, getName); in GetExceptionSummary() local
277 [[maybe_unused]] static void DiscardPendingException(JNIEnv* env, const char* className) { in DiscardPendingException()
294 [[maybe_unused]] static int ThrowException(JNIEnv* env, const char* className, const char* ctorSig, in ThrowException()
363 [[maybe_unused]] static int jniRegisterNativeMethods(JNIEnv* env, const char* className, in jniRegisterNativeMethods()
410 [[maybe_unused]] static int jniThrowException(JNIEnv* env, const char* className, const char* msg) { in jniThrowException()
449 [[maybe_unused]] static int jniThrowExceptionFmt(JNIEnv* env, const char* className, in jniThrowExceptionFmt()
/libnativehelper/tests_mts/src/com/android/art/libnativehelper/
DJniHelpTest.java37 private static native void throwException(String className, String message); in throwException()
38 private static native void throwExceptionWithIntFormat(String className, in throwExceptionWithIntFormat()
/libnativehelper/tests_mts/jni/
Djni_helper_jni.cpp33 static void throwException(JNIEnv* env, jclass /*clazz*/, jstring className, jstring message) { in throwException()
41 jstring className, in throwExceptionWithIntFormat()