HomeSort by relevance Sort by last modified time
    Searched refs:cert_error (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium/chrome/browser/ssl/
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_cert_error_handler.cc 16 int cert_error,
19 cert_error_(cert_error) {
25 ssl_info_.SetCertError(cert_error);
ssl_cert_error_handler.h 27 int cert_error,
34 int cert_error() const { return cert_error_; } function in class:SSLCertErrorHandler
ssl_error_handler.cc 135 SSLCertErrorHandler* cert_error = AsSSLCertErrorHandler(); local
136 if (cert_error)
137 request->SimulateSSLError(error, cert_error->ssl_info());
ssl_manager.h 51 int cert_error,
ssl_policy.cc 59 switch (handler->cert_error()) {
165 SSLErrorInfo::NetErrorToErrorType(handler->cert_error()),
ssl_manager.cc 29 int cert_error,
31 DVLOG(1) << "OnSSLCertificateError() cert_error: " << cert_error
45 cert_error,
  /external/chromium/net/url_request/
https_prober.h 60 int cert_error,
https_prober.cc 49 int cert_error,
url_request_test_util.h 139 int cert_error,
url_request.h 186 // ContinueDespiteLastError(). cert_error is a ERR_* error code
189 int cert_error,
url_request_test_util.cc 151 int cert_error,
url_request.cc 96 int cert_error,
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebRequest.h 79 virtual void OnSSLCertificateError(net::URLRequest* request, int cert_error, net::X509Certificate* cert);
87 void cancelSslCertError(int cert_error);
WebUrlLoaderClient.h 76 void cancelSslCertError(int cert_error);
93 void reportSslCertError(int cert_error, net::X509Certificate* cert);
WebRequest.cpp 406 void WebRequest::OnSSLCertificateError(net::URLRequest* request, int cert_error, net::X509Certificate* cert)
410 m_urlLoader.get(), &WebUrlLoaderClient::reportSslCertError, cert_error, scoped_cert));
470 void WebRequest::cancelSslCertError(int cert_error)
472 m_request->SimulateError(cert_error);
WebUrlLoaderClient.cpp 319 void WebUrlLoaderClient::cancelSslCertError(int cert_error)
323 thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod(m_request.get(), &WebRequest::cancelSslCertError, cert_error));
474 void WebUrlLoaderClient::reportSslCertError(int cert_error, net::X509Certificate* cert)
482 m_webFrame->reportSslCertError(this, cert_error, chain_bytes[0], m_request->getUrl());
  /external/openssl/apps/
verify.c 301 int cert_error = X509_STORE_CTX_get_error(ctx); local
315 cert_error,
317 X509_verify_cert_error_string(cert_error));
318 switch(cert_error)
345 if (cert_error == X509_V_OK && ok == 2)
  /external/chromium/chrome/browser/
plugin_download_helper.h 45 int cert_error,
plugin_download_helper.cc 54 int cert_error,
56 net::URLRequest::Delegate::OnSSLCertificateError(request, cert_error, cert);
  /external/chromium/net/proxy/
proxy_script_fetcher_impl.h 55 virtual void OnSSLCertificateError(URLRequest* request, int cert_error,
proxy_script_fetcher_impl.cc 188 int cert_error,
193 result_code_ = cert_error;
  /frameworks/base/media/libstagefright/chromium_http/
support.h 109 net::URLRequest *request, int cert_error, net::X509Certificate *cert);
support.cpp 266 net::URLRequest *request, int cert_error, net::X509Certificate *cert) {
267 fprintf(stderr, "OnSSLCertificateError cert_error=%d\n", cert_error);
269 inherited::OnSSLCertificateError(request, cert_error, cert);
  /external/webkit/Source/WebKit/android/jni/
WebCoreFrameBridge.h 122 void reportSslCertError(WebUrlLoaderClient* client, int cert_error, const std::string& cert, const std::string& url);

Completed in 345 milliseconds

1 2