Searched refs:functionName (Results 1 – 5 of 5) sorted by relevance
/libnativehelper/include_platform_header_only/nativehelper/ |
D | jni_macros.h | 206 #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/ |
D | JniHelpTest.java | 116 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/ |
D | jni_helper_jni.cpp | 65 static void throwErrnoException(JNIEnv* env, jclass /*clazz*/, jstring functionName, jint cause) { in throwErrnoException() argument 66 ScopedUtfChars m(env, functionName); in throwErrnoException()
|
/libnativehelper/ |
D | JNIHelp.c | 384 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/ |
D | JNIHelp.h | 423 [[maybe_unused]] static int jniThrowErrnoException(JNIEnv* env, const char* functionName, in jniThrowErrnoException() argument 426 jstring _detailMessage = CreateExceptionMsg(env, functionName); in jniThrowErrnoException()
|