Searched refs:ctorSig (Results 1 – 2 of 2) sorted by relevance
/aosp12/libnativehelper/ |
H A D | JNIHelp.c | 237 static int ThrowException(JNIEnv* env, const char* className, const char* ctorSig, ...) { in ThrowException() argument 242 va_start(args, ctorSig); in ThrowException() 257 jmethodID init = (*env)->GetMethodID(env, exceptionClass, "<init>", ctorSig); in ThrowException() 259 ALOGE("Failed to find constructor for '%s' '%s'", className, ctorSig); in ThrowException() 307 #define THROW_EXCEPTION_WITH_MESSAGE(env, className, ctorSig, msg, ...) ({ \ argument 309 int _status = ThrowException(env, className, ctorSig, _detailMessage, ## __VA_ARGS__); \
|
/aosp12/libnativehelper/include/nativehelper/ |
H A D | JNIHelp.h | 289 [[maybe_unused]] static int ThrowException(JNIEnv* env, const char* className, const char* ctorSig, in ThrowException() argument 295 va_start(args, ctorSig); in ThrowException() 311 jmethodID init = env->GetMethodID(exceptionClass, "<init>", ctorSig); in ThrowException() 314 "Failed to find constructor for '%s' '%s'", className, ctorSig); in ThrowException()
|