Home
last modified time | relevance | path

Searched defs:msg (Results 1 – 3 of 3) sorted by relevance

/libnativehelper/
DJNIHelp.c287 static jstring CreateExceptionMsg(JNIEnv* env, const char* msg) { in CreateExceptionMsg()
307 #define THROW_EXCEPTION_WITH_MESSAGE(env, className, ctorSig, msg, ...) ({ \ argument
368 int jniThrowNullPointerException(JNIEnv* env, const char* msg) { in jniThrowNullPointerException()
372 int jniThrowRuntimeException(JNIEnv* env, const char* msg) { in jniThrowRuntimeException()
/libnativehelper/include/nativehelper/
DJNIHelp.h343 [[maybe_unused]] static jstring CreateExceptionMsg(JNIEnv* env, const char* msg) { in CreateExceptionMsg()
405 [[maybe_unused]] static int jniThrowException(JNIEnv* env, const char* className, const char* msg) { in jniThrowException()
454 [[maybe_unused]] static int jniThrowNullPointerException(JNIEnv* env, const char* msg) { in jniThrowNullPointerException()
458 [[maybe_unused]] static int jniThrowRuntimeException(JNIEnv* env, const char* msg) { in jniThrowRuntimeException()
/libnativehelper/include_platform_header_only/nativehelper/detail/
Dsignature_checker.h385 #define PARSE_FAILURE(msg) X_ASSERT(! #msg) argument
386 #define PARSE_ASSERT_MSG(cond, msg) X_ASSERT(#msg && (cond)) argument
389 #define PARSE_FAILURE(msg) return NullConstexprOptional{}; argument
390 #define PARSE_ASSERT_MSG(cond, msg) if (!(cond)) { PARSE_FAILURE(msg); } argument
395 constexpr void ParseFailure(const char* msg) { in ParseFailure()