OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getPeerPrincipal
(Results
1 - 25
of
50
) sorted by null
1
2
/libcore/luni/src/main/java/javax/net/ssl/
HandshakeCompletedEvent.java
112
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
113
return session.
getPeerPrincipal
();
SSLSession.java
141
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException;
HttpsURLConnection.java
231
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
/libcore/luni/src/main/java/java/net/
SecureCacheResponse.java
80
public abstract Principal
getPeerPrincipal
()
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLSessionBindingEventTest.java
135
* @see javax.net.ssl.SSLSession#
getPeerPrincipal
()
137
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
HttpsURLConnectionTest.java
42
con.
getPeerPrincipal
();
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/tls/
FakeSSLSession.java
85
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
/libcore/harmony-tests/src/test/java/org/apache/harmony/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
() {
/frameworks/base/core/java/android/net/http/
DelegatingSSLSession.java
115
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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
();
/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
(),
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSessionImplTest.java
71
session.
getPeerPrincipal
();
72
fail("
getPeerPrincipal
: No expected SSLPeerUnverifiedException");
/external/conscrypt/src/main/java/org/conscrypt/
SSLNullSession.java
118
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
OpenSSLSessionImpl.java
280
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
/external/mockwebserver/src/main/java/com/google/mockwebserver/
RecordedRequest.java
68
peerPrincipal = session.
getPeerPrincipal
();
222
* {@code sslSocket.getSession().
getPeerPrincipal
()}, or {@code null} if the connection doesn't
/libcore/benchmarks/src/benchmarks/regression/
HostnameVerifierBenchmark.java
138
public Principal
getPeerPrincipal
() {
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
mySSLSession.java
113
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
ResponseCacheAdapterTest.java
232
assertEquals(realHttpsUrlConnection.
getPeerPrincipal
(),
233
cacheHttpsUrlConnection.
getPeerPrincipal
());
JavaApiConverterTest.java
196
assertNotNullAndEquals(httpsURLConnection.
getPeerPrincipal
(), handshake.peerPrincipal());
273
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
549
assertEquals(SERVER_CERT.getSubjectX500Principal(), httpsUrlConnection.
getPeerPrincipal
());
651
assertEquals(handshake.peerPrincipal(), javaCacheResponse.
getPeerPrincipal
());
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DelegatingHttpsURLConnection.java
77
@Override public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
JavaApiConverter.java
205
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
/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
...]
/external/conscrypt/src/test/java/org/conscrypt/
TrustManagerImplTest.java
352
public Principal
getPeerPrincipal
() throws SSLPeerUnverifiedException {
Completed in 415 milliseconds
1
2