/external/mockito/src/test/java/org/mockitousage/stubbing/ |
D | DeepStubbingTest.java | 80 when(sf.createSocket(anyString(), eq(80))).thenReturn(null); in myTest() 81 sf.createSocket("what", 80); in myTest() 101 when(socketFactory.createSocket().getOutputStream()).thenReturn(out); in oneLevelDeep() 103 assertSame(out, socketFactory.createSocket().getOutputStream()); in oneLevelDeep() 115 when(sf1.createSocket().getOutputStream()).thenReturn(out1); in interactions() 118 when(sf2.createSocket().getOutputStream()).thenReturn(out2); in interactions() 120 assertSame(out1, sf1.createSocket().getOutputStream()); in interactions() 121 assertSame(out2, sf2.createSocket().getOutputStream()); in interactions() 134 when(sf.createSocket().getOutputStream()).thenReturn(out1); in withArguments() 135 when(sf.createSocket("google.com", 80).getOutputStream()).thenReturn(out2); in withArguments() [all …]
|
/external/conscrypt/android/src/main/java/org/conscrypt/ |
D | BaseOpenSSLSocketAdapterFactory.java | 44 public Socket createSocket() throws IOException { in createSocket() method in BaseOpenSSLSocketAdapterFactory 45 return wrap((OpenSSLSocketImpl) delegate.createSocket()); in createSocket() 49 public Socket createSocket(String hostname, int port) in createSocket() method in BaseOpenSSLSocketAdapterFactory 51 return wrap((OpenSSLSocketImpl) delegate.createSocket(hostname, port)); in createSocket() 55 public Socket createSocket(String hostname, int port, InetAddress localHost, int localPort) in createSocket() method in BaseOpenSSLSocketAdapterFactory 58 (OpenSSLSocketImpl) delegate.createSocket(hostname, port, localHost, localPort)); in createSocket() 61 public Socket createSocket(InetAddress address, int port) throws IOException { in createSocket() method in BaseOpenSSLSocketAdapterFactory 62 return wrap((OpenSSLSocketImpl) delegate.createSocket(address, port)); in createSocket() 66 public Socket createSocket(InetAddress address, in createSocket() method in BaseOpenSSLSocketAdapterFactory 72 (OpenSSLSocketImpl) delegate.createSocket(address, port, localAddress, localPort)); in createSocket() [all …]
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | DelegatingSSLSocketFactory.java | 38 @Override public SSLSocket createSocket() throws IOException { in createSocket() method in DelegatingSSLSocketFactory 39 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(); in createSocket() 43 @Override public SSLSocket createSocket(String host, int port) throws IOException { in createSocket() method in DelegatingSSLSocketFactory 44 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port); in createSocket() 48 @Override public SSLSocket createSocket( in createSocket() method in DelegatingSSLSocketFactory 50 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port, localAddress, localPort); in createSocket() 54 @Override public SSLSocket createSocket(InetAddress host, int port) throws IOException { in createSocket() method in DelegatingSSLSocketFactory 55 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port); in createSocket() 59 @Override public SSLSocket createSocket( in createSocket() method in DelegatingSSLSocketFactory 61 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port, localAddress, localPort); in createSocket() [all …]
|
D | DelegatingSocketFactory.java | 37 public Socket createSocket() throws IOException { in createSocket() method in DelegatingSocketFactory 38 Socket socket = delegate.createSocket(); in createSocket() 43 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket() method in DelegatingSocketFactory 44 Socket socket = delegate.createSocket(host, port); in createSocket() 49 public Socket createSocket(String host, int port, InetAddress localAddress, int localPort) in createSocket() method in DelegatingSocketFactory 51 Socket socket = delegate.createSocket(host, port, localAddress, localPort); in createSocket() 56 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket() method in DelegatingSocketFactory 57 Socket socket = delegate.createSocket(host, port); in createSocket() 62 public Socket createSocket(InetAddress host, int port, InetAddress localAddress, int localPort) in createSocket() method in DelegatingSocketFactory 64 Socket socket = delegate.createSocket(host, port, localAddress, localPort); in createSocket()
|
D | ConnectionSpecTest.java | 87 SSLSocket socket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in tls_defaultCiphers_noFallbackIndicator() 117 SSLSocket socket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in tls_defaultCiphers_withFallbackIndicator() 151 SSLSocket socket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in tls_explicitCiphers() 190 SSLSocket socket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in tls_missingRequiredCipher() 216 SSLSocket sslSocket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in allEnabledCipherSuites() 237 SSLSocket sslSocket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in allEnabledTlsVersions() 255 SSLSocket socket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in tls_missingTlsVersion()
|
/external/conscrypt/repackaged/testing/src/main/java/tests/net/ |
D | DelegatingSSLSocketFactory.java | 51 public Socket createSocket() throws IOException { in createSocket() method in DelegatingSSLSocketFactory 52 SSLSocket socket = (SSLSocket) mDelegate.createSocket(); in createSocket() 56 public Socket createSocket(Socket s, String host, int port, boolean autoClose) in createSocket() method in DelegatingSSLSocketFactory 58 SSLSocket socket = (SSLSocket) mDelegate.createSocket(s, host, port, autoClose); in createSocket() 62 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket() method in DelegatingSSLSocketFactory 63 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port); in createSocket() 67 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in createSocket() method in DelegatingSSLSocketFactory 69 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port, localHost, localPort); in createSocket() 73 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket() method in DelegatingSSLSocketFactory 74 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port); in createSocket() [all …]
|
D | DelegatingSocketFactory.java | 42 public Socket createSocket() throws IOException { in createSocket() method in DelegatingSocketFactory 43 Socket socket = mDelegate.createSocket(); in createSocket() 47 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket() method in DelegatingSocketFactory 48 Socket socket = mDelegate.createSocket(host, port); in createSocket() 52 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in createSocket() method in DelegatingSocketFactory 54 Socket socket = mDelegate.createSocket(host, port, localHost, localPort); in createSocket() 58 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket() method in DelegatingSocketFactory 59 Socket socket = mDelegate.createSocket(host, port); in createSocket() 63 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, in createSocket() method in DelegatingSocketFactory 65 Socket socket = mDelegate.createSocket(address, port, localAddress, localPort); in createSocket()
|
/external/conscrypt/testing/src/main/java/tests/net/ |
D | DelegatingSSLSocketFactory.java | 49 public Socket createSocket() throws IOException { in createSocket() method in DelegatingSSLSocketFactory 50 SSLSocket socket = (SSLSocket) mDelegate.createSocket(); in createSocket() 54 public Socket createSocket(Socket s, String host, int port, boolean autoClose) in createSocket() method in DelegatingSSLSocketFactory 56 SSLSocket socket = (SSLSocket) mDelegate.createSocket(s, host, port, autoClose); in createSocket() 60 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket() method in DelegatingSSLSocketFactory 61 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port); in createSocket() 65 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in createSocket() method in DelegatingSSLSocketFactory 67 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port, localHost, localPort); in createSocket() 71 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket() method in DelegatingSSLSocketFactory 72 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port); in createSocket() [all …]
|
D | DelegatingSocketFactory.java | 40 public Socket createSocket() throws IOException { in createSocket() method in DelegatingSocketFactory 41 Socket socket = mDelegate.createSocket(); in createSocket() 45 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket() method in DelegatingSocketFactory 46 Socket socket = mDelegate.createSocket(host, port); in createSocket() 50 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in createSocket() method in DelegatingSocketFactory 52 Socket socket = mDelegate.createSocket(host, port, localHost, localPort); in createSocket() 56 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket() method in DelegatingSocketFactory 57 Socket socket = mDelegate.createSocket(host, port); in createSocket() 61 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, in createSocket() method in DelegatingSocketFactory 63 Socket socket = mDelegate.createSocket(address, port, localAddress, localPort); in createSocket()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | OpenSSLSocketFactoryImpl.java | 86 public Socket createSocket() throws IOException { in createSocket() method in OpenSSLSocketFactoryImpl 98 public Socket createSocket(String hostname, int port) throws IOException, UnknownHostException { in createSocket() method in OpenSSLSocketFactoryImpl 109 public Socket createSocket(String hostname, int port, InetAddress localHost, int localPort) in createSocket() method in OpenSSLSocketFactoryImpl 121 public Socket createSocket(InetAddress address, int port) throws IOException { in createSocket() method in OpenSSLSocketFactoryImpl 132 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, in createSocket() method in OpenSSLSocketFactoryImpl 144 public Socket createSocket(Socket socket, String hostname, int port, boolean autoClose) in createSocket() method in OpenSSLSocketFactoryImpl
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | OpenSSLSocketFactoryImpl.java | 89 public Socket createSocket() throws IOException { in createSocket() method in OpenSSLSocketFactoryImpl 101 public Socket createSocket(String hostname, int port) throws IOException, UnknownHostException { in createSocket() method in OpenSSLSocketFactoryImpl 112 public Socket createSocket(String hostname, int port, InetAddress localHost, int localPort) in createSocket() method in OpenSSLSocketFactoryImpl 124 public Socket createSocket(InetAddress address, int port) throws IOException { in createSocket() method in OpenSSLSocketFactoryImpl 135 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, in createSocket() method in OpenSSLSocketFactoryImpl 147 public Socket createSocket(Socket socket, String hostname, int port, boolean autoClose) in createSocket() method in OpenSSLSocketFactoryImpl
|
/external/nist-sip/java/gov/nist/core/net/ |
D | DefaultNetworkLayer.java | 74 public Socket createSocket(InetAddress address, int port) in createSocket() method in DefaultNetworkLayer 107 return (SSLSocket) sslSocketFactory.createSocket(address, port); in createSSLSocket() 113 return (SSLSocket) sslSocketFactory.createSocket(address, port, in createSSLSocket() 117 public Socket createSocket(InetAddress address, int port, in createSocket() method in DefaultNetworkLayer 141 public Socket createSocket(InetAddress address, int port, in createSocket() method in DefaultNetworkLayer
|
D | SslNetworkLayer.java | 93 public Socket createSocket(InetAddress address, int port) in createSocket() method in SslNetworkLayer 117 return (SSLSocket) sslSocketFactory.createSocket(address, port); in createSSLSocket() 123 return (SSLSocket) sslSocketFactory.createSocket(address, port, in createSSLSocket() 127 public Socket createSocket(InetAddress address, int port, in createSocket() method in SslNetworkLayer 151 public Socket createSocket(InetAddress address, int port, in createSocket() method in SslNetworkLayer
|
D | NetworkLayer.java | 80 public Socket createSocket(InetAddress address, int port) throws IOException; in createSocket() method 91 …public Socket createSocket(InetAddress address, int port, InetAddress localAddress) throws IOExcep… in createSocket() method 109 public Socket createSocket(InetAddress address, int port, in createSocket() method
|
/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/ |
D | SSLSocketTest.java | 107 (SSLSocket) SSLSocketFactory.getDefault().createSocket()); in test_SSLSocket_defaultConfiguration() 113 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_getSupportedCipherSuites_returnsCopies() 241 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_getEnabledCipherSuites_returnsCopies() 248 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_setEnabledCipherSuites_storesCopy() 260 SSLSocket ssl = (SSLSocket) context.getSocketFactory().createSocket(); in test_SSLSocket_setEnabledCipherSuites_TLS12() 295 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_setEnabledCipherSuites_TLS13() 319 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_getSupportedProtocols_returnsCopies() 326 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_getEnabledProtocols_returnsCopies() 333 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_setEnabledProtocols_storesCopy() 344 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_setEnabledProtocols() [all …]
|
D | HttpsURLConnectionTest.java | 139 public Socket createSocket(Socket s, String host, int port, boolean autoClose) { in createSocket() method in HttpsURLConnectionTest.FakeSSLSocketFactory 144 public Socket createSocket( in createSocket() method in HttpsURLConnectionTest.FakeSSLSocketFactory 150 public Socket createSocket(InetAddress host, int port) { in createSocket() method in HttpsURLConnectionTest.FakeSSLSocketFactory 155 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) { in createSocket() method in HttpsURLConnectionTest.FakeSSLSocketFactory 160 public Socket createSocket(String host, int port) { in createSocket() method in HttpsURLConnectionTest.FakeSSLSocketFactory
|
D | SSLSocketVersionCompatibilityTest.java | 194 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_startHandshake() 252 final SSLSocket client1 = (SSLSocket) c.clientContext.getSocketFactory().createSocket( in test_SSLSocket_confirmSessionReuse() 264 final SSLSocket client2 = (SSLSocket) c.clientContext.getSocketFactory().createSocket( in test_SSLSocket_confirmSessionReuse() 288 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_NoEnabledCipherSuites_Failure() 323 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_startHandshake_noKeyStore() 357 (SSLSocket) clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_startHandshake_noClientCertificate() 380 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_HandshakeCompletedListener() 488 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_HandshakeCompletedListener_RuntimeException() 519 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_getUseClientMode() 566 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_setUseClientMode() [all …]
|
/external/conscrypt/repackaged/openjdk-integ-tests/src/test/java/com/android/org/conscrypt/javax/net/ssl/ |
D | SSLSocketTest.java | 111 (SSLSocket) SSLSocketFactory.getDefault().createSocket()); in test_SSLSocket_defaultConfiguration() 117 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_getSupportedCipherSuites_returnsCopies() 245 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_getEnabledCipherSuites_returnsCopies() 252 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_setEnabledCipherSuites_storesCopy() 264 SSLSocket ssl = (SSLSocket) context.getSocketFactory().createSocket(); in test_SSLSocket_setEnabledCipherSuites_TLS12() 299 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_setEnabledCipherSuites_TLS13() 323 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_getSupportedProtocols_returnsCopies() 330 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_getEnabledProtocols_returnsCopies() 337 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_setEnabledProtocols_storesCopy() 348 SSLSocket ssl = (SSLSocket) sf.createSocket(); in test_SSLSocket_setEnabledProtocols() [all …]
|
D | HttpsURLConnectionTest.java | 143 public Socket createSocket(Socket s, String host, int port, boolean autoClose) { in createSocket() method in HttpsURLConnectionTest.FakeSSLSocketFactory 148 public Socket createSocket( in createSocket() method in HttpsURLConnectionTest.FakeSSLSocketFactory 154 public Socket createSocket(InetAddress host, int port) { in createSocket() method in HttpsURLConnectionTest.FakeSSLSocketFactory 159 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) { in createSocket() method in HttpsURLConnectionTest.FakeSSLSocketFactory 164 public Socket createSocket(String host, int port) { in createSocket() method in HttpsURLConnectionTest.FakeSSLSocketFactory
|
D | SSLSocketVersionCompatibilityTest.java | 196 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_startHandshake() 254 final SSLSocket client1 = (SSLSocket) c.clientContext.getSocketFactory().createSocket( in test_SSLSocket_confirmSessionReuse() 266 final SSLSocket client2 = (SSLSocket) c.clientContext.getSocketFactory().createSocket( in test_SSLSocket_confirmSessionReuse() 290 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_NoEnabledCipherSuites_Failure() 325 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_startHandshake_noKeyStore() 359 (SSLSocket) clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_startHandshake_noClientCertificate() 382 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_HandshakeCompletedListener() 490 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_HandshakeCompletedListener_RuntimeException() 521 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_getUseClientMode() 568 (SSLSocket) c.clientContext.getSocketFactory().createSocket(c.host, c.port); in test_SSLSocket_setUseClientMode() [all …]
|
/external/conscrypt/testing/src/main/java/org/conscrypt/ |
D | ChannelType.java | 43 return clientMode(factory.createSocket(address, port)); in newClientSocket() 63 return clientMode(factory.createSocket(wrapped, address.getHostName(), port, true)); in newClientSocket() 78 return serverMode(factory.createSocket( in accept() 87 return clientMode(factory.createSocket(wrapped, address.getHostName(), port, true)); in newClientSocket() 109 return serverMode(factory.createSocket( in accept()
|
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/ |
D | ChannelType.java | 45 return clientMode(factory.createSocket(address, port)); in newClientSocket() 65 return clientMode(factory.createSocket(wrapped, address.getHostName(), port, true)); in newClientSocket() 80 return serverMode(factory.createSocket( in accept() 89 return clientMode(factory.createSocket(wrapped, address.getHostName(), port, true)); in newClientSocket() 111 return serverMode(factory.createSocket( in accept()
|
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/javax/net/ssl/ |
D | TestSSLContext.java | 446 public Socket createSocket(String host, int port) throws IOException { in clientAuth() method in TestSSLContext 447 return set(sf.createSocket(host, port)); in clientAuth() 450 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in clientAuth() method in TestSSLContext 452 return set(sf.createSocket(host, port, localHost, localPort)); in clientAuth() 455 public Socket createSocket(InetAddress host, int port) throws IOException { in clientAuth() method in TestSSLContext 456 return set(sf.createSocket(host, port)); in clientAuth() 459 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, in clientAuth() method in TestSSLContext 461 return set(sf.createSocket(address, port)); in clientAuth() 472 public Socket createSocket(Socket s, String host, int port, boolean autoClose) in clientAuth() method in TestSSLContext 474 return set(sf.createSocket(s, host, port, autoClose)); in clientAuth()
|
/external/conscrypt/testing/src/main/java/org/conscrypt/javax/net/ssl/ |
D | TestSSLContext.java | 441 public Socket createSocket(String host, int port) throws IOException { in clientAuth() method in TestSSLContext 442 return set(sf.createSocket(host, port)); in clientAuth() 445 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in clientAuth() method in TestSSLContext 447 return set(sf.createSocket(host, port, localHost, localPort)); in clientAuth() 450 public Socket createSocket(InetAddress host, int port) throws IOException { in clientAuth() method in TestSSLContext 451 return set(sf.createSocket(host, port)); in clientAuth() 454 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, in clientAuth() method in TestSSLContext 456 return set(sf.createSocket(address, port)); in clientAuth() 467 public Socket createSocket(Socket s, String host, int port, boolean autoClose) in clientAuth() method in TestSSLContext 469 return set(sf.createSocket(s, host, port, autoClose)); in clientAuth()
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | ConscryptSocketTest.java | 118 SSLSocket sslSocket = (SSLSocket) factory.createSocket( in newClientSocket() 128 (SSLSocket) factory.createSocket(server.accept(), null, -1, true); in newServerSocket() 172 return init(factory.createSocket(server.getInetAddress(), server.getLocalPort()), true); in newClientSocket() 178 return init(factory.createSocket(underlying, server.getInetAddress().getHostName(), in newClientSocket() 187 return init(socketFactory(context).createSocket(underlying, null, -1, true), false); in newServerSocket() 256 abstract AbstractConscryptSocket createSocket(ServerSocket listener) throws IOException; in createSocket() method in ConscryptSocketTest.Hooks 296 AbstractConscryptSocket createSocket(ServerSocket listener) throws IOException { in createSocket() method in ConscryptSocketTest.ClientHooks 326 AbstractConscryptSocket createSocket(ServerSocket listener) throws IOException { in createSocket() method in ConscryptSocketTest.ServerHooks 410 AbstractConscryptSocket socket = hooks.createSocket(listener); in handshake() 608 public AbstractConscryptSocket createSocket(ServerSocket listener) throws IOException { [all …]
|