HomeSort by relevance Sort by last modified time
    Searched defs:getPeerPrincipal (Results 1 - 25 of 37) sorted by null

1 2

  /libcore/luni/src/main/java/java/net/
SecureCacheResponse.java 80 public abstract Principal getPeerPrincipal()
  /libcore/luni/src/main/java/javax/net/ssl/
HandshakeCompletedEvent.java 112 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
113 return session.getPeerPrincipal();
HttpsURLConnection.java 231 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
SSLSession.java 141 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
SecureCacheResponseTest.java 61 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /libcore/support/src/test/java/libcore/javax/net/ssl/
FakeSSLSession.java 79 public Principal getPeerPrincipal() {
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
HttpsURLConnectionTest.java 43 con.getPeerPrincipal();
SSLSessionBindingEventTest.java 135 * @see javax.net.ssl.SSLSession#getPeerPrincipal()
137 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/tls/
FakeSSLSession.java 85 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLSessionBindingEventTest.java 175 * @see javax.net.ssl.SSLSession#getPeerPrincipal()
177 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
HttpsURLConnectionTest.java 141 * javax.net.ssl.HttpsURLConnection#getPeerPrincipal()
147 connection.getPeerPrincipal();
153 Principal p = con.getPeerPrincipal();
159 Principal p = con.getPeerPrincipal();
HandshakeCompletedEventTest.java 163 * javax.net.ssl.HandshakeCompletedEvent#getPeerPrincipal()
169 assertNull(event.getPeerPrincipal());
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSessionImplTest.java 72 session.getPeerPrincipal();
73 fail("getPeerPrincipal: No expected SSLPeerUnverifiedException");
  /libcore/benchmarks/src/benchmarks/regression/
HostnameVerifierBenchmark.java 138 public Principal getPeerPrincipal() {
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLSessionImpl.java 270 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
SSLSessionImpl.java 159 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
mySSLSession.java 113 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpsURLConnectionImpl.java 86 @Override public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
89 return cacheResponse.getPeerPrincipal();
93 return sslSocket.getSession().getPeerPrincipal();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 353 connection.getPeerPrincipal();
803 .getPeerPrincipal());
805 assertEquals(session.getPeerPrincipal(), clientConnection
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSessionTest.java 199 s.invalid.getPeerPrincipal();
204 s.server.getPeerPrincipal();
208 assertNotNull(s.client.getPeerPrincipal());
209 assertNotNull(s.client.getPeerPrincipal().getName());
210 TestSSLContext.assertCertificateInKeyStore(s.client.getPeerPrincipal(),
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 285 connection.getPeerPrincipal();
640 assertEquals(session.getLocalPrincipal(), clientConnection.getPeerPrincipal());
641 assertEquals(session.getPeerPrincipal(), clientConnection.getLocalPrincipal());
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java     [all...]
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
URLConnectionTest.java     [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 969 milliseconds

1 2