Home
last modified time | relevance | path

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

/external/conscrypt/src/main/java/org/conscrypt/
DClientSessionContext.java33 private final HashMap<HostAndPort, SSLSession> sessionsByHostAndPort = new HashMap<>(); field in ClientSessionContext
42 return sessionsByHostAndPort.size(); in size()
57 synchronized (sessionsByHostAndPort) { in sessionRemoved()
58 sessionsByHostAndPort.remove(hostAndPortKey); in sessionRemoved()
75 synchronized (sessionsByHostAndPort) { in getSession()
76 session = sessionsByHostAndPort.get(hostAndPortKey); in getSession()
89 synchronized (sessionsByHostAndPort) { in getSession()
90 sessionsByHostAndPort.put(hostAndPortKey, session); in getSession()
111 synchronized (sessionsByHostAndPort) { in putSession()
112 sessionsByHostAndPort.put(hostAndPortKey, session); in putSession()