Searched refs:SSLSessionImpl (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSessionContextImpl.java73 SSLSessionImpl sess =
74 (SSLSessionImpl)sessionCache.get(new SessionId(sessionId));
145 SSLSessionImpl get(byte[] id) {
146 return (SSLSessionImpl)getSession(id);
150 SSLSessionImpl get(String hostname, int port) {
159 SSLSessionImpl sess =
160 (SSLSessionImpl)sessionHostPortCache.get(getKey(hostname, port));
180 void put(SSLSessionImpl s) {
194 SSLSessionImpl s = (SSLSessionImpl)sessionCach
[all...]
H A DSSLSessionImpl.java78 final class SSLSessionImpl extends ExtendedSSLSession { class in inherits:ExtendedSSLSession
83 static final SSLSessionImpl nullSession = new SSLSessionImpl();
140 private SSLSessionImpl() { method in class:SSLSessionImpl
150 SSLSessionImpl(ProtocolVersion protocolVersion, CipherSuite cipherSuite, method in class:SSLSessionImpl
160 SSLSessionImpl(ProtocolVersion protocolVersion, CipherSuite cipherSuite, method in class:SSLSessionImpl
364 if (obj instanceof SSLSessionImpl) {
365 SSLSessionImpl sess = (SSLSessionImpl) obj;
H A DSSLEngineImpl.java204 private SSLSessionImpl sess;
205 private volatile SSLSessionImpl handshakeSession;
355 sess = SSLSessionImpl.nullSession;
1558 synchronized void setHandshakeSession(SSLSessionImpl session) {
H A DSSLSocketImpl.java329 private SSLSessionImpl sess;
330 private volatile SSLSessionImpl handshakeSession;
551 sess = SSLSessionImpl.nullSession;
2190 synchronized void setHandshakeSession(SSLSessionImpl session) {
H A DHandshaker.java127 SSLSessionImpl session;
748 SSLSessionImpl getSession() {
755 void setHandshakeSessionSE(SSLSessionImpl handshakeSession) {
H A DClientHandshaker.java582 session = new SSLSessionImpl(protocolVersion, cipherSuite,
1110 SessionId sessionId = SSLSessionImpl.nullSession.getSessionId();
H A DServerHandshaker.java458 SSLSessionImpl previous = ((SSLSessionContextImpl)sslContext
605 session = new SSLSessionImpl(protocolVersion, CipherSuite.C_NULL,

Completed in 54 milliseconds