/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | ConnectionSpecTest.java | 88 socket.setEnabledCipherSuites(new String[] { in tls_defaultCiphers_noFallbackIndicator() 116 socket.setEnabledCipherSuites(new String[] { in tls_defaultCiphers_withFallbackIndicator() 148 socket.setEnabledCipherSuites(new String[] { in tls_explicitCiphers() 191 socket.setEnabledCipherSuites(new String[] { in tls_missingRequiredCipher() 197 socket.setEnabledCipherSuites(new String[] { in tls_missingRequiredCipher() 210 sslSocket.setEnabledCipherSuites(new String[] { in allEnabledCipherSuites() 247 socket.setEnabledCipherSuites(new String[] { in tls_missingTlsVersion()
|
D | FallbackTestClientSocketFactory.java | 53 @Override public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in FallbackTestClientSocketFactory.TlsFallbackScsvDisabledSSLSocket 60 delegate.setEnabledCipherSuites( in setEnabledCipherSuites()
|
D | DelegatingSSLSocket.java | 56 @Override public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in DelegatingSSLSocket 57 delegate.setEnabledCipherSuites(suites); in setEnabledCipherSuites()
|
/external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/ |
D | SSLEngineTest.java | 207 client.setEnabledCipherSuites(cipherSuiteArray); in test_SSLEngine_getSupportedCipherSuites_connect() 208 server.setEnabledCipherSuites(cipherSuiteArray); in test_SSLEngine_getSupportedCipherSuites_connect() 244 client.setEnabledCipherSuites(cipherSuiteArray); in test_SSLEngine_getSupportedCipherSuites_connect() 245 server.setEnabledCipherSuites(cipherSuiteArray); in test_SSLEngine_getSupportedCipherSuites_connect() 326 e.setEnabledCipherSuites(array); in test_SSLEngine_setEnabledCipherSuites_storesCopy() 337 e.setEnabledCipherSuites(null); in test_SSLEngine_setEnabledCipherSuites() 343 e.setEnabledCipherSuites(new String[1]); in test_SSLEngine_setEnabledCipherSuites() 349 e.setEnabledCipherSuites(new String[] {"Bogus"}); in test_SSLEngine_setEnabledCipherSuites() 355 e.setEnabledCipherSuites(new String[0]); in test_SSLEngine_setEnabledCipherSuites() 356 e.setEnabledCipherSuites(e.getEnabledCipherSuites()); in test_SSLEngine_setEnabledCipherSuites() [all …]
|
D | SSLServerSocketTest.java | 42 socket.setEnabledCipherSuites(cipherSuites); in testSetEnabledCipherSuitesAffectsGetter() 52 socket.setEnabledCipherSuites(array); in testSetEnabledCipherSuitesStoresCopy()
|
D | SSLSocketTest.java | 295 ssl.setEnabledCipherSuites(array); in test_SSLSocket_setEnabledCipherSuites_storesCopy() 305 ssl.setEnabledCipherSuites(null); in test_SSLSocket_setEnabledCipherSuites() 311 ssl.setEnabledCipherSuites(new String[1]); in test_SSLSocket_setEnabledCipherSuites() 317 ssl.setEnabledCipherSuites(new String[] {"Bogus"}); in test_SSLSocket_setEnabledCipherSuites() 322 ssl.setEnabledCipherSuites(new String[0]); in test_SSLSocket_setEnabledCipherSuites() 323 ssl.setEnabledCipherSuites(ssl.getEnabledCipherSuites()); in test_SSLSocket_setEnabledCipherSuites() 324 ssl.setEnabledCipherSuites(ssl.getSupportedCipherSuites()); in test_SSLSocket_setEnabledCipherSuites() 327 ssl.setEnabledCipherSuites(cipherSuites); in test_SSLSocket_setEnabledCipherSuites() 508 client.setEnabledCipherSuites(new String[0]); in test_SSLSocket_NoEnabledCipherSuites_Failure() 1394 client.setEnabledCipherSuites(new String[0]); in test_SSLSocket_close() [all …]
|
D | SSLSessionContextTest.java | 165 c.serverSocket.setEnabledCipherSuites(supportedCipherSuites); in test_SSLSessionContext_setSessionCacheSize_dynamic()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | ConscryptServerSocket.java | 142 public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in ConscryptServerSocket 143 sslParameters.setEnabledCipherSuites(suites); in setEnabledCipherSuites()
|
D | ConscryptEngineSocket.java | 270 public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in ConscryptEngineSocket 271 engine.setEnabledCipherSuites(suites); in setEnabledCipherSuites()
|
D | ConscryptFileDescriptorSocket.java | 699 public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in ConscryptFileDescriptorSocket 700 sslParameters.setEnabledCipherSuites(suites); in setEnabledCipherSuites()
|
D | SSLParametersImpl.java | 216 void setEnabledCipherSuites(String[] cipherSuites) { in setEnabledCipherSuites() method in SSLParametersImpl
|
D | ConscryptEngine.java | 604 public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in ConscryptEngine 605 sslParameters.setEnabledCipherSuites(suites); in setEnabledCipherSuites()
|
/external/conscrypt/testing/src/main/java/libcore/javax/net/ssl/ |
D | TestSSLSocketPair.java | 73 server.setEnabledCipherSuites(serverCipherSuites); in connect() 83 client.setEnabledCipherSuites(clientCipherSuites); in connect()
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | OpenSSLServerSocketImplTest.java | 68 sslSocket.setEnabledCipherSuites(new String[] {cipher}); in newServerSocket() 100 socket.setEnabledCipherSuites(new String[] {CIPHER}); in setup()
|
/external/nist-sip/java/gov/nist/javax/sip/ |
D | SipStackExt.java | 122 public void setEnabledCipherSuites(String[] newCipherSuites); in setEnabledCipherSuites() method
|
/external/conscrypt/benchmark-base/src/main/java/org/conscrypt/ |
D | ClientEndpoint.java | 40 socket.setEnabledCipherSuites(ciphers); in ClientEndpoint()
|
D | ServerEndpoint.java | 125 socket.setEnabledCipherSuites(cipherSuites); in run()
|
/external/conscrypt/android/src/main/java/org/conscrypt/ |
D | PreKitKatPlatformOpenSSLSocketImplAdapter.java | 288 public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in PreKitKatPlatformOpenSSLSocketImplAdapter 289 delegate.setEnabledCipherSuites(suites); in setEnabledCipherSuites()
|
D | KitKatPlatformOpenSSLSocketImplAdapter.java | 288 public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in KitKatPlatformOpenSSLSocketImplAdapter 289 delegate.setEnabledCipherSuites(suites); in setEnabledCipherSuites()
|
/external/conscrypt/android-stub/src/main/java/com/android/org/conscrypt/ |
D | OpenSSLSocketImpl.java | 149 public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in OpenSSLSocketImpl
|
/external/conscrypt/android-stub/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
D | OpenSSLSocketImpl.java | 149 public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in OpenSSLSocketImpl
|
/external/okhttp/android/test/java/com/squareup/okhttp/internal/ |
D | PlatformTest.java | 173 public void setEnabledCipherSuites(String[] suites) { in setEnabledCipherSuites() method in PlatformTest.TestSSLSocketImpl
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
D | TLSMessageProcessor.java | 112 ((SSLServerSocket) this.sock).setEnabledCipherSuites(enabledCiphers); in start()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | ConnectionSpec.java | 135 sslSocket.setEnabledCipherSuites(specToApply.cipherSuites); in apply()
|
/external/conscrypt/testing/src/main/java/org/conscrypt/ |
D | TestUtils.java | 221 engine.setEnabledCipherSuites(new String[] {cipher}); in initEngine()
|