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

/frameworks/base/core/java/android/net/http/
H A DHttpsConnection.java148 * Sets the server SSL certificate associated with this
150 * @param certificate The SSL certificate
152 /* package */ void setCertificate(SslCertificate certificate) { argument
153 mCertificate = certificate;
316 // allow the certificate anyway.
H A DLoggingEventHandler.java72 public void certificate(SslCertificate certificate) { argument
74 HttpLog.v("LoggingEventHandler: certificate(): " + certificate);
H A DSslError.java23 * certificate.
32 * The certificate is not yet valid
36 * The certificate has expired
44 * The certificate authority is not trusted
48 * The date of the certificate is invalid
73 * The SSL certificate associated with the error set
83 * Creates a new SslError object using the supplied error and certificate.
86 * @param certificate The associated SSL certificate
90 public SslError(int error, SslCertificate certificate) { argument
102 SslError(int error, X509Certificate certificate) argument
113 SslError(int error, SslCertificate certificate, String url) argument
128 SslError(int error, X509Certificate certificate, String url) argument
[all...]
H A DEventHandler.java24 * there is an SSL certificate error. error() can occur anywhere
109 * SSL certificate callback called before resource request is
112 public void certificate(SslCertificate certificate); argument
122 * SSL certificate error callback. Handles SSL error(s) on the way
H A DSslCertificate.java43 * SSL certificate info (certificate details) class
53 * Name of the entity this certificate is issued to
58 * Name of the entity this certificate is issued by
73 * The original source certificate, if available.
88 private static final String X509_CERTIFICATE = "x509-certificate";
91 * Saves the certificate state to a bundle
92 * @param certificate The SSL certificate to store
93 * @return A bundle with the certificate store
95 saveState(SslCertificate certificate) argument
177 SslCertificate(X509Certificate certificate) argument
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java445 * Implements the EventHandler certificate method called every
448 public void certificate(SslCertificate certificate) {} argument
496 * SSL certificate error callback. Handles SSL error(s) on the way
505 " certificate: " + error.getCertificate());
527 if (expectSslErrors == -1) // && expectSslCertificate == certificate?
730 public void expectSSLCertificateError(SslCertificate certificate) { argument
732 expectCertificate = certificate;
/frameworks/base/core/java/android/webkit/
H A DHTML5VideoViewProxy.java546 public void certificate(SslCertificate certificate) { argument
H A DCallbackProxy.java889 public void onReceivedCertificate(SslCertificate certificate) { argument
890 // here, certificate can be null (if the site is not secure)
891 sendMessage(obtainMessage(RECEIVED_CERTIFICATE, certificate));
H A DWebViewProvider.java78 public void setCertificate(SslCertificate certificate); argument
H A DWebView.java552 * Gets the SSL certificate for the main top-level page or null if there is
553 * no certificate (the site is not secure).
555 * @return the SSL certificate for the main top-level page
563 * Sets the SSL certificate for the main top-level page.
569 public void setCertificate(SslCertificate certificate) { argument
571 mProvider.setCertificate(certificate);
1294 * SSL certificate errors.
H A DWebViewClassic.java754 // SSL certificate for the main top-level page (if secure)
2074 public void setCertificate(SslCertificate certificate) { argument
2076 Log.v(LOGTAG, "setCertificate=" + certificate);
2078 // here, the certificate can be null (if the site is not secure)
2079 mCertificate = certificate;
2314 outState.putBundle("certificate",
2501 inState.getBundle("certificate"));
4009 // WebView certificate: if the new site is secure, we
4010 // will reload it and get a new certificate set;
4011 // if the new site is not secure, the certificate mus
[all...]

Completed in 165 milliseconds