HomeSort by relevance Sort by last modified time
    Searched refs:sslSession (Results 1 - 5 of 5) sorted by null

  /external/okhttp/src/test/java/libcore/net/http/
ExternalSpdyExample.java 25 import javax.net.ssl.SSLSession;
33 @Override public boolean verify(String s, SSLSession sslSession) {
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSocketImpl.java 42 import javax.net.ssl.SSLSession;
78 private OpenSSLSessionImpl sslSession;
386 sslSession = (OpenSSLSessionImpl) sessionContext.getSession(sessionId);
387 if (sslSession != null) {
388 sslSession.lastAccessedTime = System.currentTimeMillis();
399 sslSession = new OpenSSLSessionImpl(sslSessionNativePointer, localCertificates,
403 sessionContext.putSession(sslSession);
524 // If sslSession is null, the handshake was completed during
527 // the SSLSession and session cache or notify
530 if (sslSession == null)
    [all...]
AbstractSessionContext.java 32 import javax.net.ssl.SSLSession;
49 private final Map<ByteArray, SSLSession> sessions
50 = new LinkedHashMap<ByteArray, SSLSession>() {
53 Map.Entry<ByteArray, SSLSession> eldest) {
72 private Iterator<SSLSession> sessionIterator() {
74 SSLSession[] array = sessions.values().toArray(
75 new SSLSession[sessions.size()]);
81 final Iterator<SSLSession> i = sessionIterator();
83 private SSLSession next;
89 SSLSession session = i.next()
    [all...]
  /frameworks/base/core/java/android/net/http/
CertificateChainValidator.java 28 import javax.net.ssl.SSLSession;
77 // get a valid SSLSession, close the socket if we fail
78 SSLSession sslSession = sslSocket.getSession();
79 if (!sslSession.isValid()) {
203 SSLSession session = socket.getSession();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 

Completed in 174 milliseconds