Home
last modified time | relevance | path

Searched refs:SSLSessionImpl (Results 1 – 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/ssl/
DSSLSessionContextImpl.java40 private Cache<SessionId, SSLSessionImpl> sessionCache;
42 private Cache<String, SSLSessionImpl> sessionHostPortCache;
66 SSLSessionImpl sess = sessionCache.get(new SessionId(sessionId)); in getSession()
142 SSLSessionImpl get(byte[] id) { in get()
143 return (SSLSessionImpl)getSession(id); in get()
147 SSLSessionImpl get(String hostname, int port) { in get()
156 SSLSessionImpl sess = sessionHostPortCache.get(getKey(hostname, port)); in get()
177 void put(SSLSessionImpl s) { in put()
191 SSLSessionImpl s = sessionCache.get(key); in remove()
232 implements Cache.CacheVisitor<SessionId, SSLSessionImpl> {
[all …]
DSSLSessionImpl.java78 final class SSLSessionImpl extends ExtendedSSLSession { class
83 static final SSLSessionImpl nullSession = new SSLSessionImpl();
140 private SSLSessionImpl() { in SSLSessionImpl() method in SSLSessionImpl
150 SSLSessionImpl(ProtocolVersion protocolVersion, CipherSuite cipherSuite, in SSLSessionImpl() method in SSLSessionImpl
160 SSLSessionImpl(ProtocolVersion protocolVersion, CipherSuite cipherSuite, in SSLSessionImpl() method in SSLSessionImpl
364 if (obj instanceof SSLSessionImpl) { in equals()
365 SSLSessionImpl sess = (SSLSessionImpl) obj; in equals()
DSSLEngineImpl.java204 private SSLSessionImpl sess;
205 private volatile SSLSessionImpl handshakeSession;
355 sess = SSLSessionImpl.nullSession; in init()
1558 synchronized void setHandshakeSession(SSLSessionImpl session) { in setHandshakeSession()
DSSLSocketImpl.java329 private SSLSessionImpl sess;
330 private volatile SSLSessionImpl handshakeSession;
551 sess = SSLSessionImpl.nullSession; in init()
2190 synchronized void setHandshakeSession(SSLSessionImpl session) { in setHandshakeSession()
DHandshaker.java127 SSLSessionImpl session;
748 SSLSessionImpl getSession() { in getSession()
755 void setHandshakeSessionSE(SSLSessionImpl handshakeSession) { in setHandshakeSessionSE()
DClientHandshaker.java582 session = new SSLSessionImpl(protocolVersion, cipherSuite, in serverHello()
1110 SessionId sessionId = SSLSessionImpl.nullSession.getSessionId(); in getKickstartMessage()
DServerHandshaker.java458 SSLSessionImpl previous = ((SSLSessionContextImpl)sslContext in clientHello()
605 session = new SSLSessionImpl(protocolVersion, CipherSuite.C_NULL, in clientHello()
/libcore/
Dopenjdk_java_files.mk1359 ojluni/src/main/java/sun/security/ssl/SSLSessionImpl.java \