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

1 2

  /cts/tests/tests/net/src/android/net/http/cts/
SslCertificate_DNameTest.java 23 import android.net.http.SslCertificate;
24 import android.net.http.SslCertificate.DName;
31 // new the SslCertificate instance
34 SslCertificate ssl = new SslCertificate(TO, BY, DateFormat.getInstance().format(
SslCertificateTest.java 36 import android.net.http.SslCertificate;
37 import android.net.http.SslCertificate.DName;
43 // new the SslCertificate instance
45 new SslCertificate("c=129", "e=weji", date, date);
47 // new the SslCertificate instance
48 new SslCertificate(new MockX509Certificate());
192 SslCertificate ssl = new SslCertificate("c=129", "e=weji", date1, date2);
193 Bundle saved = SslCertificate.saveState(ssl);
200 assertNull(SslCertificate.saveState(null))
    [all...]
SslErrorTest.java 19 import android.net.http.SslCertificate;
28 private SslCertificate mCertificate;
33 mCertificate = new SslCertificate("foo", "bar", new Date(42), new Date(43));
  /frameworks/base/core/tests/coretests/src/android/net/http/
SslCertificateTest.java 20 import android.net.http.SslCertificate;
50 SslCertificate sslCertificate = new SslCertificate(x509Certificate);
51 assertEquals("", sslCertificate.getIssuedBy().getDName());
105 SslCertificate sslCertificate = new SslCertificate(x509Certificate);
106 assertEquals(dn, "Posta CA 1", sslCertificate.getIssuedTo().getCName());
  /frameworks/base/core/java/android/net/http/
SslError.java 75 final SslCertificate mCertificate;
87 * @deprecated Use {@link #SslError(int, SslCertificate, String)}
90 public SslError(int error, SslCertificate certificate) {
113 public SslError(int error, SslCertificate certificate, String url) {
129 this(error, new SslCertificate(certificate), url);
140 int error, SslCertificate cert, String url) {
158 public SslCertificate getCertificate() {
EventHandler.java 112 public void certificate(SslCertificate certificate);
SslCertificate.java 45 public class SslCertificate {
95 public static Bundle saveState(SslCertificate certificate) {
119 public static SslCertificate restoreState(Bundle bundle) {
136 return new SslCertificate(bundle.getString(ISSUED_TO),
151 * @deprecated Use {@link #SslCertificate(X509Certificate)}
154 public SslCertificate(
165 * @deprecated Use {@link #SslCertificate(X509Certificate)}
168 public SslCertificate(
177 public SslCertificate(X509Certificate certificate) {
185 private SslCertificate(
    [all...]
LoggingEventHandler.java 72 public void certificate(SslCertificate certificate) {
Connection.java 66 protected SslCertificate mCertificate = null;
138 /* package */ SslCertificate getCertificate() {
CertificateChainValidator.java 131 new SslCertificate((X509Certificate)peerCertificates[0]));
HttpsConnection.java 152 /* package */ void setCertificate(SslCertificate certificate) {
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
SslUtil.java 7 import android.net.http.SslCertificate;
25 public static SslError sslErrorFromNetErrorCode(int error, SslCertificate cert, String url) {
41 public static SslCertificate getCertificateFromDerBytes(byte[] derBytes) {
49 return new SslCertificate(x509Certificate);
AwContentsClientBridge.java 7 import android.net.http.SslCertificate;
171 final SslCertificate cert = SslUtil.getCertificateFromDerBytes(derBytes);
AwContents.java 19 import android.net.http.SslCertificate;
    [all...]
  /packages/apps/Browser/src/com/android/browser/
PageDialogsHandler.java 23 import android.net.http.SslCertificate;
53 // as SSLCertificate has different style for landscape / portrait, we
242 SslCertificate cert = tab.getWebView().getCertificate();
282 SslCertificate cert = error.getCertificate();
342 private AlertDialog.Builder createSslCertificateDialog(SslCertificate certificate,
  /frameworks/base/core/java/android/webkit/
WebViewProvider.java 28 import android.net.http.SslCertificate;
81 public SslCertificate getCertificate();
83 public void setCertificate(SslCertificate certificate);
WebView.java 29 import android.net.http.SslCertificate;
618 public SslCertificate getCertificate() {
630 public void setCertificate(SslCertificate certificate) {
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
CertificateViewer.java 10 import android.net.http.SslCertificate;
123 SslCertificate sslCert = new SslCertificate(x509);
  /frameworks/base/tests/CoreTests/android/core/
TestEventHandler.java 91 private SslCertificate expectCertificate;
448 public void certificate(SslCertificate certificate) {}
525 // SslCertificate match here?
730 public void expectSSLCertificateError(SslCertificate certificate) {
  /packages/apps/Settings/src/com/android/settings/
TrustedCredentialsSettings.java 26 import android.net.http.SslCertificate;
532 private final SslCertificate mSslCert;
550 mSslCert = new SslCertificate(x509Cert);
745 SslCertificate sslCert = new SslCertificate(certificate);
  /frameworks/webview/chromium/java/com/android/webview/chromium/
WebViewChromium.java 31 import android.net.http.SslCertificate;
431 public SslCertificate getCertificate() {
434 SslCertificate ret = runOnUiThreadBlocking(new Callable<SslCertificate>() {
436 public SslCertificate call() {
446 public void setCertificate(SslCertificate certificate) {
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebViewSslTest.java 22 import android.net.http.SslCertificate;
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 360 milliseconds

1 2