HomeSort by relevance Sort by last modified time
    Searched defs:cert_error (Results 1 - 7 of 7) sorted by null

  /external/chromium/chrome/browser/ssl/
ssl_cert_error_handler.h 27 int cert_error,
34 int cert_error() const { return cert_error_; } function in class:SSLCertErrorHandler
ssl_add_cert_handler.cc 38 int cert_error; local
41 cert_error = db.CheckUserCert(cert_);
43 if (cert_error != net::OK) {
47 scoped_refptr<SSLAddCertHandler>(this), cert_error);
69 int cert_error = db.AddUserCert(cert_); local
70 if (cert_error != net::OK) {
74 scoped_refptr<SSLAddCertHandler>(this), cert_error);
ssl_error_handler.cc 135 SSLCertErrorHandler* cert_error = AsSSLCertErrorHandler(); local
136 if (cert_error)
137 request->SimulateSSLError(error, cert_error->ssl_info());
  /external/chromium_org/chrome/browser/ssl/
ssl_add_cert_handler.cc 41 int cert_error = net::CertDatabase::GetInstance()->CheckUserCert(cert_.get()); local
42 if (cert_error != net::OK) {
43 LOG_IF(ERROR, cert_error == net::ERR_NO_PRIVATE_KEY_FOR_CERT)
51 cert_error));
71 int cert_error = net::OK; local
73 cert_error = net::CertDatabase::GetInstance()->AddUserCert(cert_.get());
79 add_cert, cert_error));
84 void SSLAddCertHandler::CallVerifyClientCertificateError(int cert_error) {
91 ssl_tab_helper->OnVerifyClientCertificateError(this, cert_error);
95 int cert_error) {
    [all...]
  /external/chromium_org/content/browser/ssl/
ssl_cert_error_handler.h 35 int cert_error() const { return cert_error_; } function in class:content::SSLCertErrorHandler
  /external/chromium_org/third_party/openssl/openssl/apps/
verify.c 313 int cert_error = X509_STORE_CTX_get_error(ctx); local
327 cert_error,
329 X509_verify_cert_error_string(cert_error));
330 switch(cert_error)
357 if (cert_error == X509_V_OK && ok == 2)
  /external/openssl/apps/
verify.c 313 int cert_error = X509_STORE_CTX_get_error(ctx); local
327 cert_error,
329 X509_verify_cert_error_string(cert_error));
330 switch(cert_error)
357 if (cert_error == X509_V_OK && ok == 2)

Completed in 208 milliseconds