Home
last modified time | relevance | path

Searched refs:functionName (Results 1 – 5 of 5) sorted by relevance

/libnativehelper/include_platform_header_only/nativehelper/
Djni_macros.h206 #define NATIVE_METHOD(className, functionName, signature) \ argument
207 MAKE_JNI_NATIVE_METHOD(#functionName, signature, className ## _ ## functionName)
209 #define OVERLOADED_NATIVE_METHOD(className, functionName, signature, identifier) \ argument
210 MAKE_JNI_NATIVE_METHOD(#functionName, signature, className ## _ ## identifier)
212 #define NATIVE_METHOD_AUTOSIG(className, functionName) \ argument
213 MAKE_JNI_NATIVE_METHOD_AUTOSIG(#functionName, className ## _ ## functionName)
215 #define FAST_NATIVE_METHOD(className, functionName, signature) \ argument
216 MAKE_JNI_FAST_NATIVE_METHOD(#functionName, signature, className ## _ ## functionName)
218 #define OVERLOADED_FAST_NATIVE_METHOD(className, functionName, signature, identifier) \ argument
219 MAKE_JNI_FAST_NATIVE_METHOD(#functionName, signature, className ## _ ## identifier)
[all …]
/libnativehelper/tests_mts/src/com/android/art/libnativehelper/
DJniHelpTest.java116 final String functionName = "execve"; in testErrnoException() local
119 throwErrnoException(functionName, err); in testErrnoException()
124 assertTrue("Function name", e.getMessage().startsWith(functionName)); in testErrnoException()
/libnativehelper/tests_mts/jni/
Djni_helper_jni.cpp65 static void throwErrnoException(JNIEnv* env, jclass /*clazz*/, jstring functionName, jint cause) { in throwErrnoException() argument
66 ScopedUtfChars m(env, functionName); in throwErrnoException()
/libnativehelper/
DJNIHelp.c384 int jniThrowErrnoException(JNIEnv* env, const char* functionName, int errno_value) { in jniThrowErrnoException() argument
386 "(Ljava/lang/String;I)V", functionName, errno_value); in jniThrowErrnoException()
/libnativehelper/include/nativehelper/
DJNIHelp.h423 [[maybe_unused]] static int jniThrowErrnoException(JNIEnv* env, const char* functionName, in jniThrowErrnoException() argument
426 jstring _detailMessage = CreateExceptionMsg(env, functionName); in jniThrowErrnoException()