/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/ |
D | SSLParametersTest.java | 48 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_emptyConstructor() 60 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_cipherSuitesConstructor() 75 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_cpherSuitesProtocolsConstructor() 114 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_ClientAuth() 119 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_ClientAuth() 124 assertTrue(p.getNeedClientAuth()); in test_SSLParameters_ClientAuth() 129 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_ClientAuth()
|
D | SSLEngineTest.java | 768 assertEquals(p.getNeedClientAuth(), e.getNeedClientAuth()); 801 assertFalse(e.getNeedClientAuth()); 804 assertTrue(e.getNeedClientAuth()); 808 assertTrue(e.getNeedClientAuth()); 811 assertFalse(e.getNeedClientAuth()); 815 assertFalse(e.getNeedClientAuth()); 818 assertFalse(e.getNeedClientAuth());
|
D | SSLSocketTest.java | 611 assertEquals(p.getNeedClientAuth(), ssl.getNeedClientAuth()); in test_SSLSocket_getSSLParameters() 647 assertFalse(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters() 650 assertTrue(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters() 653 assertTrue(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters() 656 assertFalse(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters() 659 assertFalse(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters() 662 assertFalse(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters()
|
D | SSLEngineVersionCompatibilityTest.java | 234 assertFalse(e.getNeedClientAuth()); in test_SSLEngine_clientAuth() 239 assertFalse(e.getNeedClientAuth()); in test_SSLEngine_clientAuth() 244 assertTrue(e.getNeedClientAuth()); in test_SSLEngine_clientAuth() 249 assertFalse(e.getNeedClientAuth()); in test_SSLEngine_clientAuth()
|
/external/conscrypt/repackaged/openjdk-integ-tests/src/test/java/com/android/org/conscrypt/javax/net/ssl/ |
D | SSLParametersTest.java | 52 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_emptyConstructor() 64 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_cipherSuitesConstructor() 79 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_cpherSuitesProtocolsConstructor() 118 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_ClientAuth() 123 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_ClientAuth() 128 assertTrue(p.getNeedClientAuth()); in test_SSLParameters_ClientAuth() 133 assertFalse(p.getNeedClientAuth()); in test_SSLParameters_ClientAuth()
|
D | SSLEngineTest.java | 776 assertEquals(p.getNeedClientAuth(), e.getNeedClientAuth()); 809 assertFalse(e.getNeedClientAuth()); 812 assertTrue(e.getNeedClientAuth()); 816 assertTrue(e.getNeedClientAuth()); 819 assertFalse(e.getNeedClientAuth()); 823 assertFalse(e.getNeedClientAuth()); 826 assertFalse(e.getNeedClientAuth());
|
D | SSLSocketTest.java | 620 assertEquals(p.getNeedClientAuth(), ssl.getNeedClientAuth()); in test_SSLSocket_getSSLParameters() 656 assertFalse(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters() 659 assertTrue(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters() 662 assertTrue(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters() 665 assertFalse(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters() 668 assertFalse(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters() 671 assertFalse(ssl.getNeedClientAuth()); in test_SSLSocket_setSSLParameters()
|
D | SSLEngineVersionCompatibilityTest.java | 236 assertFalse(e.getNeedClientAuth()); in test_SSLEngine_clientAuth() 241 assertFalse(e.getNeedClientAuth()); in test_SSLEngine_clientAuth() 246 assertTrue(e.getNeedClientAuth()); in test_SSLEngine_clientAuth() 251 assertFalse(e.getNeedClientAuth()); in test_SSLEngine_clientAuth()
|
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/javax/net/ssl/ |
D | SSLConfigurationAsserts.java | 57 assertFalse(defaultParameters.getNeedClientAuth()); in assertSSLContextDefaultConfiguration() 62 assertFalse(supportedParameters.getNeedClientAuth()); in assertSSLContextDefaultConfiguration() 183 assertEquals(sslServerSocket.getNeedClientAuth(), in assertSSLServerSocketConfigSameAsSSLContext() 184 sslContext.getDefaultSSLParameters().getNeedClientAuth()); in assertSSLServerSocketConfigSameAsSSLContext() 215 assertEquals(expected.getNeedClientAuth(), actual.getNeedClientAuth()); in assertSSLParametersEqual()
|
/external/conscrypt/testing/src/main/java/org/conscrypt/javax/net/ssl/ |
D | SSLConfigurationAsserts.java | 55 assertFalse(defaultParameters.getNeedClientAuth()); in assertSSLContextDefaultConfiguration() 60 assertFalse(supportedParameters.getNeedClientAuth()); in assertSSLContextDefaultConfiguration() 181 assertEquals(sslServerSocket.getNeedClientAuth(), in assertSSLServerSocketConfigSameAsSSLContext() 182 sslContext.getDefaultSSLParameters().getNeedClientAuth()); in assertSSLServerSocketConfigSameAsSSLContext() 213 assertEquals(expected.getNeedClientAuth(), actual.getNeedClientAuth()); in assertSSLParametersEqual()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | ConscryptServerSocket.java | 157 public boolean getNeedClientAuth() { in getNeedClientAuth() method in ConscryptServerSocket 158 return sslParameters.getNeedClientAuth(); in getNeedClientAuth()
|
D | Java8EngineWrapper.java | 160 public boolean getNeedClientAuth() { in getNeedClientAuth() method in Java8EngineWrapper 161 return delegate.getNeedClientAuth(); in getNeedClientAuth()
|
D | ConscryptEngineSocket.java | 409 public final boolean getNeedClientAuth() { 410 return engine.getNeedClientAuth();
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | ConscryptServerSocket.java | 158 public boolean getNeedClientAuth() { in getNeedClientAuth() method in ConscryptServerSocket 159 return sslParameters.getNeedClientAuth(); in getNeedClientAuth()
|
D | Java8EngineWrapper.java | 161 public boolean getNeedClientAuth() { in getNeedClientAuth() method in Java8EngineWrapper 162 return delegate.getNeedClientAuth(); in getNeedClientAuth()
|
D | ConscryptEngineSocket.java | 417 public final boolean getNeedClientAuth() { 418 return engine.getNeedClientAuth();
|
D | ConscryptFileDescriptorSocket.java | 908 public final boolean getNeedClientAuth() { 909 return sslParameters.getNeedClientAuth();
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | DelegatingSSLSocket.java | 104 @Override public boolean getNeedClientAuth() { in getNeedClientAuth() method in DelegatingSSLSocket 105 return delegate.getNeedClientAuth(); in getNeedClientAuth()
|
/external/conscrypt/android/src/main/java/org/conscrypt/ |
D | PreKitKatPlatformOpenSSLSocketImplAdapter.java | 348 public boolean getNeedClientAuth() { in getNeedClientAuth() method in PreKitKatPlatformOpenSSLSocketImplAdapter 349 return delegate.getNeedClientAuth(); in getNeedClientAuth()
|
D | KitKatPlatformOpenSSLSocketImplAdapter.java | 348 public boolean getNeedClientAuth() { in getNeedClientAuth() method in KitKatPlatformOpenSSLSocketImplAdapter 349 return delegate.getNeedClientAuth(); in getNeedClientAuth()
|
/external/conscrypt/publicapi/src/test/java/android/net/ssl/ |
D | SSLSocketsTest.java | 61 @Override public boolean getNeedClientAuth() { throw new AssertionError(); } in getNeedClientAuth() method in SSLSocketsTest.BrokenSSLSocket
|
D | SSLEnginesTest.java | 63 @Override public boolean getNeedClientAuth() { throw new AssertionError(); } in getNeedClientAuth() method in SSLEnginesTest.BrokenSSLEngine
|
/external/conscrypt/android-stub/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
D | OpenSSLSocketImpl.java | 204 public boolean getNeedClientAuth() { in getNeedClientAuth() method in OpenSSLSocketImpl
|
/external/conscrypt/android-stub/src/main/java/com/android/org/conscrypt/ |
D | OpenSSLSocketImpl.java | 203 public boolean getNeedClientAuth() { in getNeedClientAuth() method in OpenSSLSocketImpl
|
/external/okhttp/android/src/test/java/com/squareup/okhttp/internal/ |
D | PlatformTest.java | 225 public boolean getNeedClientAuth() { in getNeedClientAuth() method in PlatformTest.TestSSLSocketImpl
|