Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/javax/net/ssl/
DSSLSessionContextTest.java34 c.clientContext.getClientSessionContext(), in assertSSLSessionContextSize()
37 c.serverContext.getClientSessionContext(), in assertSSLSessionContextSize()
66 Enumeration clientIds = s.c.clientContext.getClientSessionContext().getIds(); in test_SSLSessionContext_getIds()
83 c.clientContext.getClientSessionContext().getSession(null); in test_SSLSessionContext_getSession()
87 assertNull(c.clientContext.getClientSessionContext().getSession(new byte[0])); in test_SSLSessionContext_getSession()
88 assertNull(c.clientContext.getClientSessionContext().getSession(new byte[1])); in test_SSLSessionContext_getSession()
99 SSLSessionContext client = s.c.clientContext.getClientSessionContext(); in test_SSLSessionContext_getSession()
117 c.clientContext.getClientSessionContext().getSessionCacheSize()); in test_SSLSessionContext_getSessionCacheSize()
124 s.c.clientContext.getClientSessionContext().getSessionCacheSize()); in test_SSLSessionContext_getSessionCacheSize()
134 c.clientContext.getClientSessionContext()); in test_SSLSessionContext_setSessionCacheSize_noConnect()
[all …]
DSSLContextTest.java544 SSLSessionContext sessionContext = sslContext.getClientSessionContext(); in test_SSLContext_getClientSessionContext()
549 assertSame(SSLContext.getInstance(protocol).getClientSessionContext(), in test_SSLContext_getClientSessionContext()
552 assertNotSame(SSLContext.getInstance(protocol).getClientSessionContext(), in test_SSLContext_getClientSessionContext()
DSSLSessionTest.java234 assertEquals(s.s.c.clientContext.getClientSessionContext(), in test_SSLSession_getSessionContext()
DSSLSocketTest.java593 assertNotNull(c.clientContext.getClientSessionContext().getSession(id)); in test_SSLSocket_HandshakeCompletedListener()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
DSSLSessionContextTest.java26 .getClientSessionContext(); in test_sessionCacheSize()
50 .getClientSessionContext(); in test_sessionTimeout()
73 .getClientSessionContext(); in test_getSession()
91 .getClientSessionContext(); in test_getIds()
DSSLContext2Test.java97 sslC.getClientSessionContext(); in checkSSLContext()
138 assertNull("Not null result", sslC.getClientSessionContext()); in checkSSLContext()
DSSLSessionTest.java131 SSLSession sess = clientSslContext.getClientSessionContext().getSession(id); in test_getId()
211 clientSslContext.getClientSessionContext()); in test_getSessionContext()
DSSLContext1Test.java184 sslC[i].getClientSessionContext()); in test_getClientSessionContext()
/libcore/ojluni/src/main/java/javax/net/ssl/
DSSLContext.java436 public final SSLSessionContext getClientSessionContext() { in getClientSessionContext() method in SSLContext