Searched defs:sslSession (Results 1 - 16 of 16) sorted by relevance

/external/conscrypt/openjdk/src/main/java/org/conscrypt/
H A DPlatform.java323 public static SSLSession wrapSSLSession(AbstractOpenSSLSession sslSession) { argument
324 return new OpenSSLExtendedSessionImpl(sslSession);
327 public static SSLSession unwrapSSLSession(SSLSession sslSession) { argument
328 if (sslSession instanceof OpenSSLExtendedSessionImpl) {
329 return ((OpenSSLExtendedSessionImpl) sslSession).getDelegate();
331 return sslSession;
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
H A DAbstractSessionContextTest.java646 private static Map<String, Object> getValueMap(SSLSession sslSession) { argument
648 for (String valueName : sslSession.getValueNames()) {
649 result.put(valueName, sslSession.getValue(valueName));
H A DNativeCryptoTest.java2241 public abstract void run(long sslSession) throws Exception; argument
2260 public void run(long sslSession) throws Exception {
2262 NativeCrypto.SSL_shutdown(sslSession, null, DUMMY_CB);
2272 public void run(long sslSession) throws Exception {
2274 NativeCrypto.SSL_shutdown(sslSession, INVALID_FD, null);
2287 public void run(long sslSession) throws Exception {
2289 NativeCrypto.SSL_shutdown(sslSession, INVALID_FD, DUMMY_CB);
/external/conscrypt/platform/src/main/java/org/conscrypt/
H A DPlatform.java343 public static SSLSession wrapSSLSession(AbstractOpenSSLSession sslSession) { argument
344 return new OpenSSLExtendedSessionImpl(sslSession);
347 public static SSLSession unwrapSSLSession(SSLSession sslSession) { argument
348 if (sslSession instanceof OpenSSLExtendedSessionImpl) {
349 return ((OpenSSLExtendedSessionImpl) sslSession).getDelegate();
351 return sslSession;
/external/conscrypt/android/src/main/java/org/conscrypt/
H A DPlatform.java698 public static SSLSession wrapSSLSession(AbstractOpenSSLSession sslSession) { argument
700 return sslSession;
703 return new OpenSSLExtendedSessionImpl(sslSession);
706 public static SSLSession unwrapSSLSession(SSLSession sslSession) { argument
708 return sslSession;
711 if (sslSession instanceof OpenSSLExtendedSessionImpl) {
712 return ((OpenSSLExtendedSessionImpl) sslSession).getDelegate();
714 return sslSession;
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLEngineImpl.java170 private AbstractOpenSSLSession sslSession; field in class:OpenSSLEngineImpl
351 sslSession = sslParameters.getSessionToReuse(
506 if (sslSession == null) {
510 return Platform.wrapSSLSession(sslSession);
872 sslSession = sslParameters.setupSession(sslSessionCtx, sslNativePointer, sslSession,
874 if (sslSession != null && engineState == EngineState.HANDSHAKE_STARTED) {
884 if (sslSession == null && sslSessionCtx != 0) {
H A DOpenSSLSocketImpl.java164 private AbstractOpenSSLSession sslSession; field in class:OpenSSLSocketImpl
393 sslSession = sslParameters.setupSession(sslSessionNativePointer, sslNativePointer,
507 // If sslSession is null, the handshake was completed during
517 // We've returned from startHandshake, which means we've set a sslSession etc.
527 sslSession.resetId();
532 sessionContext.putSession(sslSession);
550 new HandshakeCompletedEvent(this, sslSession);
827 if (sslSession == null) {
836 return Platform.wrapSSLSession(sslSession);
/external/conscrypt/platform/src/test/java/org/conscrypt/
H A DNativeCryptoTest.java2180 public abstract void run(long sslSession) throws Exception; argument
2199 public void run(long sslSession) throws Exception {
2201 NativeCrypto.SSL_shutdown(sslSession, null, DUMMY_CB);
2211 public void run(long sslSession) throws Exception {
2213 NativeCrypto.SSL_shutdown(sslSession, INVALID_FD, null);
2226 public void run(long sslSession) throws Exception {
2228 NativeCrypto.SSL_shutdown(sslSession, INVALID_FD, DUMMY_CB);
/external/guice/extensions/struts2/lib/
H A Djetty-6.1.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/mortbay/jetty/ org/mortbay/jetty/webapp/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 814 milliseconds