Home
last modified time | relevance | path

Searched refs:verify_error (Results 1 – 5 of 5) sorted by relevance

/NextBSD/crypto/openssl/apps/
HDs_time.c114 extern int verify_error;
213 verify_error = X509_V_OK; in parseArgs()
630 if (verify_error != X509_V_OK) in doConnection()
632 X509_verify_cert_error_string(verify_error)); in doConnection()
HDs_cb.c130 int verify_error = X509_V_OK; variable
160 verify_error = X509_V_OK; in verify_callback()
163 verify_error = X509_V_ERR_CERT_CHAIN_TOO_LONG; in verify_callback()
HDs_server.c2582 long verify_error; in init_ssl_connection() local
2627 verify_error = SSL_get_verify_result(con); in init_ssl_connection()
2628 if (verify_error != X509_V_OK) { in init_ssl_connection()
2630 X509_verify_cert_error_string(verify_error)); in init_ssl_connection()
HDs_client.c203 extern int verify_error;
783 verify_error = X509_V_OK; in MAIN()
/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDProcess.cpp2581 Error verify_error; in ReadMemory() local
2582 …dMemoryFromInferior (addr, const_cast<char *>(verify_buf.data()), verify_buf.size(), verify_error); in ReadMemory()
2585 assert (verify_error.Success() == error.Success()); in ReadMemory()