Home
last modified time | relevance | path

Searched refs:ctorSig (Results 1 – 2 of 2) sorted by relevance

/libnativehelper/
DJNIHelp.c239 static int ThrowException(JNIEnv* env, const char* className, const char* ctorSig, ...) { in ThrowException() argument
244 va_start(args, ctorSig); in ThrowException()
259 jmethodID init = (*env)->GetMethodID(env, exceptionClass, "<init>", ctorSig); in ThrowException()
261 ALOGE("Failed to find constructor for '%s' '%s'", className, ctorSig); in ThrowException()
309 #define THROW_EXCEPTION_WITH_MESSAGE(env, className, ctorSig, msg, ...) ({ \ argument
311 int _status = ThrowException(env, className, ctorSig, _detailMessage, ## __VA_ARGS__); \
/libnativehelper/include/nativehelper/
DJNIHelp.h294 [[maybe_unused]] static int ThrowException(JNIEnv* env, const char* className, const char* ctorSig, in ThrowException() argument
300 va_start(args, ctorSig); in ThrowException()
316 jmethodID init = env->GetMethodID(exceptionClass, "<init>", ctorSig); in ThrowException()
319 "Failed to find constructor for '%s' '%s'", className, ctorSig); in ThrowException()