Home
last modified time | relevance | path

Searched refs:throwRuntimeException (Results 1 – 3 of 3) sorted by relevance

/external/conscrypt/common/src/jni/main/include/conscrypt/
Djniutil.h160 extern int throwRuntimeException(JNIEnv* env, const char* msg);
241 int (*defaultThrow)(JNIEnv*, const char*) = throwRuntimeException);
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc192 conscrypt::jniutil::throwRuntimeException(env, "Conversion to BIGNUM failed"); in arrayToBignum()
227 conscrypt::jniutil::throwRuntimeException(env, "Negative number"); in arrayToBignumSize()
334 conscrypt::jniutil::throwRuntimeException(env, "CBB_finish failed"); in CBBToByteArray()
360 conscrypt::jniutil::throwRuntimeException(env, "buffer too large"); in CryptoBufferToByteArray()
406 conscrypt::jniutil::throwRuntimeException(env, "too many buffers"); in CryptoBuffersToObjectArray()
904 conscrypt::jniutil::throwRuntimeException(env, "RSA_new failed"); in NativeCrypto_EVP_PKEY_new_RSA()
955 conscrypt::jniutil::throwRuntimeException(env, "Unable to convert BigInteger to BIGNUM"); in NativeCrypto_EVP_PKEY_new_RSA()
974 conscrypt::jniutil::throwRuntimeException(env, "EVP_PKEY_new failed"); in NativeCrypto_EVP_PKEY_new_RSA()
978 conscrypt::jniutil::throwRuntimeException(env, "EVP_PKEY_new failed"); in NativeCrypto_EVP_PKEY_new_RSA()
1011 conscrypt::jniutil::throwRuntimeException(env, "EC_KEY_new failed"); in NativeCrypto_EVP_PKEY_new_EC_KEY()
[all …]
Djniutil.cc152 int throwRuntimeException(JNIEnv* env, const char* msg) { in throwRuntimeException() function