Searched defs:throwIfNull (Results 1 - 1 of 1) sorted by relevance

/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp746 * If this function returns NULL and <code>throwIfNull</code> is
754 * @param throwIfNull whether to throw if the SSL pointer is NULL
757 static SSL_CTX* to_SSL_CTX(JNIEnv* env, jlong ssl_ctx_address, bool throwIfNull) { argument
759 if ((ssl_ctx == NULL) && throwIfNull) {
766 static SSL* to_SSL(JNIEnv* env, jlong ssl_address, bool throwIfNull) { argument
768 if ((ssl == NULL) && throwIfNull) {
775 static SSL_SESSION* to_SSL_SESSION(JNIEnv* env, jlong ssl_session_address, bool throwIfNull) { argument
778 if ((ssl_session == NULL) && throwIfNull) {
785 static SSL_CIPHER* to_SSL_CIPHER(JNIEnv* env, jlong ssl_cipher_address, bool throwIfNull) { argument
788 if ((ssl_cipher == NULL) && throwIfNull) {
[all...]

Completed in 45 milliseconds