Searched refs:jniThrowException (Results 1 – 7 of 7) sorted by relevance
/external/conscrypt/src/openjdk/native/ |
D | JNIHelp.cpp | 92 int jniThrowException(JNIEnv* env, const char* className, const char* msg) { in jniThrowException() function 114 return jniThrowException(env, className, msgBuf); in jniThrowExceptionFmt() 118 return jniThrowException(env, "java/lang/NullPointerException", msg); in jniThrowNullPointerException() 122 return jniThrowException(env, "java/lang/RuntimeException", msg); in jniThrowRuntimeException() 128 return jniThrowException(env, "java/io/IOException", message); in jniThrowIOException()
|
D | NetFd.h | 34 jniThrowException(mEnv, "java/net/SocketException", "Socket closed"); in isClosed()
|
D | JNIHelp.h | 61 int jniThrowException(JNIEnv* env, const char* className, const char* msg);
|
/external/conscrypt/src/compat/native/ |
D | JNIHelp.cpp | 92 extern "C" int jniThrowException(C_JNIEnv* c_env, const char* className, const char* msg) { in jniThrowException() function 115 return jniThrowException(env, className, msgBuf); in jniThrowExceptionFmt() 119 return jniThrowException(env, "java/lang/NullPointerException", msg); in jniThrowNullPointerException() 123 return jniThrowException(env, "java/lang/RuntimeException", msg); in jniThrowRuntimeException() 129 return jniThrowException(env, "java/io/IOException", message); in jniThrowIOException()
|
D | JNIHelp.h | 61 int jniThrowException(C_JNIEnv* env, const char* className, const char* msg); 126 inline int jniThrowException(JNIEnv* env, const char* className, const char* msg) { in jniThrowException() function 127 return jniThrowException(&env->functions, className, msg); in jniThrowException()
|
D | NetFd.h | 34 jniThrowException(mEnv, "java/net/SocketException", "Socket closed"); in isClosed()
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 464 return jniThrowException(env, "java/lang/OutOfMemoryError", message); in jniThrowOutOfMemory() 472 return jniThrowException(env, "javax/crypto/BadPaddingException", message); in throwBadPaddingException() 480 return jniThrowException(env, "java/security/SignatureException", message); in throwSignatureException() 488 return jniThrowException(env, "java/security/InvalidKeyException", message); in throwInvalidKeyException() 496 return jniThrowException(env, "javax/crypto/IllegalBlockSizeException", message); in throwIllegalBlockSizeException() 504 return jniThrowException(env, "java/security/NoSuchAlgorithmException", message); in throwNoSuchAlgorithmException() 512 return jniThrowException(env, "java/io/IOException", message); in throwIOException() 520 return jniThrowException( in throwParsingException() 737 return jniThrowException(env, "java/net/SocketTimeoutException", message); in throwSocketTimeoutException() 745 return jniThrowException(env, "javax/net/ssl/SSLHandshakeException", message); in throwSSLHandshakeExceptionStr() [all …]
|