Searched refs:SSLSessionImpl (Results 1 – 8 of 8) sorted by relevance
/libcore/ojluni/src/main/java/sun/security/ssl/ |
D | SSLSessionContextImpl.java | 40 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 …]
|
D | SSLSessionImpl.java | 78 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()
|
D | SSLEngineImpl.java | 204 private SSLSessionImpl sess; 205 private volatile SSLSessionImpl handshakeSession; 355 sess = SSLSessionImpl.nullSession; in init() 1558 synchronized void setHandshakeSession(SSLSessionImpl session) { in setHandshakeSession()
|
D | SSLSocketImpl.java | 329 private SSLSessionImpl sess; 330 private volatile SSLSessionImpl handshakeSession; 551 sess = SSLSessionImpl.nullSession; in init() 2190 synchronized void setHandshakeSession(SSLSessionImpl session) { in setHandshakeSession()
|
D | Handshaker.java | 127 SSLSessionImpl session; 748 SSLSessionImpl getSession() { in getSession() 755 void setHandshakeSessionSE(SSLSessionImpl handshakeSession) { in setHandshakeSessionSE()
|
D | ClientHandshaker.java | 582 session = new SSLSessionImpl(protocolVersion, cipherSuite, in serverHello() 1110 SessionId sessionId = SSLSessionImpl.nullSession.getSessionId(); in getKickstartMessage()
|
D | ServerHandshaker.java | 458 SSLSessionImpl previous = ((SSLSessionContextImpl)sslContext in clientHello() 605 session = new SSLSessionImpl(protocolVersion, CipherSuite.C_NULL, in clientHello()
|
/libcore/ |
D | openjdk_java_files.mk | 1359 ojluni/src/main/java/sun/security/ssl/SSLSessionImpl.java \
|