Home
last modified time | relevance | path

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

/external/conscrypt/common/src/main/java/org/conscrypt/
DConscryptServerSocket.java81 public String[] getSupportedProtocols() { in getSupportedProtocols() method in ConscryptServerSocket
82 return NativeCrypto.getSupportedProtocols(); in getSupportedProtocols()
DConscryptEngineSocket.java275 public String[] getSupportedProtocols() { in getSupportedProtocols() method in ConscryptEngineSocket
276 return engine.getSupportedProtocols(); in getSupportedProtocols()
DConscryptFileDescriptorSocket.java704 public String[] getSupportedProtocols() { in getSupportedProtocols() method in ConscryptFileDescriptorSocket
705 return NativeCrypto.getSupportedProtocols(); in getSupportedProtocols()
DConscryptEngine.java569 public String[] getSupportedProtocols() { in getSupportedProtocols() method in ConscryptEngine
570 return NativeCrypto.getSupportedProtocols(); in getSupportedProtocols()
DNativeCrypto.java839 static String[] getSupportedProtocols() { in getSupportedProtocols() method in NativeCrypto
/external/conscrypt/testing/src/main/java/libcore/javax/net/ssl/
DSSLConfigurationAsserts.java118 assertProtocolsEqual(sslSocket.getSupportedProtocols(), in assertSSLSocketConfigSameAsSSLContext()
173 assertProtocolsEqual(sslServerSocket.getSupportedProtocols(), in assertSSLServerSocketConfigSameAsSSLContext()
201 assertProtocolsEqual(sslEngine.getSupportedProtocols(), in assertSSLEngineConfigSameAsSSLContext()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DDelegatingSSLSocket.java60 @Override public String[] getSupportedProtocols() { in getSupportedProtocols() method in DelegatingSSLSocket
61 return delegate.getSupportedProtocols(); in getSupportedProtocols()
/external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/
DSSLEngineTest.java371 assertNotSame(e.getSupportedProtocols(), e.getSupportedProtocols()); in test_SSLEngine_getSupportedProtocols_returnsCopies()
419 e.setEnabledProtocols(e.getSupportedProtocols()); in test_SSLEngine_setEnabledProtocols()
422 for (String protocol : e.getSupportedProtocols()) { in test_SSLEngine_setEnabledProtocols()
774 String[] supportedProtocols = e.getSupportedProtocols();
DSSLServerSocketTest.java61 String[] protocols = new String[] {socket.getSupportedProtocols()[0]}; in testSetEnabledProtocolsAffectsGetter()
DSSLSocketTest.java335 assertNotSame(ssl.getSupportedProtocols(), ssl.getSupportedProtocols()); in test_SSLSocket_getSupportedProtocols_returnsCopies()
380 ssl.setEnabledProtocols(ssl.getSupportedProtocols()); in test_SSLSocket_setEnabledProtocols()
382 for (String protocol : ssl.getSupportedProtocols()) { in test_SSLSocket_setEnabledProtocols()
1326 String[] supportedProtocols = ssl.getSupportedProtocols(); in test_SSLSocket_setSSLParameters()
1390 assertNotNull(client.getSupportedProtocols()); in test_SSLSocket_close()
/external/conscrypt/android/src/main/java/org/conscrypt/
DPreKitKatPlatformOpenSSLSocketImplAdapter.java293 public String[] getSupportedProtocols() { in getSupportedProtocols() method in PreKitKatPlatformOpenSSLSocketImplAdapter
294 return delegate.getSupportedProtocols(); in getSupportedProtocols()
DKitKatPlatformOpenSSLSocketImplAdapter.java293 public String[] getSupportedProtocols() { in getSupportedProtocols() method in KitKatPlatformOpenSSLSocketImplAdapter
294 return delegate.getSupportedProtocols(); in getSupportedProtocols()
/external/conscrypt/android-stub/src/main/java/com/android/org/conscrypt/
DOpenSSLSocketImpl.java154 public String[] getSupportedProtocols() { in getSupportedProtocols() method in OpenSSLSocketImpl
/external/conscrypt/android-stub/src/main/java/org/apache/harmony/xnet/provider/jsse/
DOpenSSLSocketImpl.java154 public String[] getSupportedProtocols() { in getSupportedProtocols() method in OpenSSLSocketImpl
/external/okhttp/android/test/java/com/squareup/okhttp/internal/
DPlatformTest.java177 public String[] getSupportedProtocols() { in getSupportedProtocols() method in PlatformTest.TestSSLSocketImpl
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
DNanoHTTPD.java511 ss.setEnabledProtocols(ss.getSupportedProtocols()); in create()