Home
last modified time | relevance | path

Searched refs:ERR_GET_LIB (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/net/ssl/
Dopenssl_ssl_util.cc60 DCHECK_EQ(ERR_LIB_SSL, ERR_GET_LIB(error_code)); in MapOpenSSLErrorSSL()
158 dict->SetInteger("error_lib", ERR_GET_LIB(error_info.error_code)); in NetLogOpenSSLErrorCallback()
208 if (ERR_GET_LIB(error_code) == ERR_LIB_SSL) { in MapOpenSSLErrorWithDetails()
213 } else if (ERR_GET_LIB(error_code) == OpenSSLNetErrorLib()) { in MapOpenSSLErrorWithDetails()
/external/chromium_org/third_party/boringssl/src/crypto/err/
Derr.c338 lib = ERR_GET_LIB(packed_error); in ERR_error_string_n()
411 return err_component_error_string(ERR_PACK(ERR_GET_LIB(packed_error), 0, 0)); in ERR_lib_error_string()
416 ERR_PACK(ERR_GET_LIB(packed_error), ERR_GET_FUNC(packed_error), 0)); in ERR_func_error_string()
421 ERR_PACK(ERR_GET_LIB(packed_error), 0, ERR_GET_REASON(packed_error))); in ERR_reason_error_string()
Derr_test.c63 ERR_GET_LIB(packed_error) != 1 || in test_put_error()
/external/chromium_org/net/cert/
Dtest_root_certs_openssl.cc21 if (ERR_GET_LIB(error_code) != ERR_LIB_X509 || in Add()
/external/openssl/crypto/ec/
Dec_cvt.c118 if (!(ERR_GET_LIB(err) == ERR_LIB_EC && in EC_GROUP_new_curve_GFp()
Dec2_oct.c132 if (ERR_GET_LIB(err) == ERR_LIB_BN && ERR_GET_REASON(err) == BN_R_NO_SOLUTION) in ec_GF2m_simple_set_compressed_coordinates()
Decp_oct.c153 if (ERR_GET_LIB(err) == ERR_LIB_BN && ERR_GET_REASON(err) == BN_R_NOT_A_SQUARE) in ec_GFp_simple_set_compressed_coordinates()
/external/openssl/crypto/err/
Derr.c338 ret=l^ERR_GET_LIB(l)^ERR_GET_FUNC(l); in err_string_data_hash()
866 l=ERR_GET_LIB(e); in ERR_error_string_n()
946 l=ERR_GET_LIB(e); in ERR_lib_error_string()
958 l=ERR_GET_LIB(e); in ERR_func_error_string()
971 l=ERR_GET_LIB(e); in ERR_reason_error_string()
Derr.h243 #define ERR_GET_LIB(l) (int)((((unsigned long)l)>>24L)&0xffL) macro
/external/chromium_org/third_party/boringssl/src/include/openssl/
Derr.h463 #define ERR_GET_LIB(packed_error) (((packed_error) >> 24) & 0xff) macro
/external/openssl/apps/
Drsa.c351 ERR_GET_LIB(err) == ERR_LIB_RSA && in MAIN()
/external/openssl/include/openssl/
Derr.h243 #define ERR_GET_LIB(l) (int)((((unsigned long)l)>>24L)&0xffL) macro
/external/chromium_org/third_party/boringssl/src/ssl/
Dssl_cert.c1072 if (ERR_GET_LIB(error) != ERR_LIB_X509 || in ssl_build_cert_chain()
1082 if (ERR_GET_LIB(error) != ERR_LIB_X509 || in ssl_build_cert_chain()
Dssl_rsa.c751 if (ERR_GET_LIB(err) == ERR_LIB_PEM && ERR_GET_REASON(err) == PEM_R_NO_START_LINE) in SSL_CTX_use_certificate_chain_file()
Dssl_lib.c2442 if (ERR_GET_LIB(l) == ERR_LIB_SYS) in SSL_get_error()
/external/chromium_org/third_party/boringssl/src/crypto/ec/
Doct.c424 if (ERR_GET_LIB(err) == ERR_LIB_BN && in ec_GFp_simple_set_compressed_coordinates()
/external/openssl/ssl/
Dssl_rsa.c810 if (ERR_GET_LIB(err) == ERR_LIB_PEM && ERR_GET_REASON(err) == PEM_R_NO_START_LINE) in SSL_CTX_use_certificate_chain_file()
Dssl_lib.c2658 if (ERR_GET_LIB(l) == ERR_LIB_SYS) in SSL_get_error()
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl.c1548 if (ERR_GET_LIB(err) == ERR_LIB_X509 && in tls_load_ca_der()
1635 if (ERR_GET_LIB(err) == ERR_LIB_X509 && in tls_connection_ca_cert()
2151 if (ERR_GET_LIB(err) == ERR_LIB_X509 && in tls_connection_engine_ca_cert()
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp557 int library = ERR_GET_LIB(error); in throwExceptionIfNecessary()