/external/conscrypt/src/compat/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 | FallbackTestClientSocketFactory.java | 43 @Override public SSLSocket createSocket(Socket s, String host, int port, boolean autoClose) in createSocket() method in FallbackTestClientSocketFactory 45 SSLSocket socket = super.createSocket(s, host, port, autoClose); in createSocket() 49 @Override public SSLSocket createSocket() throws IOException { in createSocket() method in FallbackTestClientSocketFactory 50 SSLSocket socket = super.createSocket(); in createSocket() 54 @Override public SSLSocket createSocket(String host,int port) throws IOException { in createSocket() method in FallbackTestClientSocketFactory 55 SSLSocket socket = super.createSocket(host, port); in createSocket() 59 @Override public SSLSocket createSocket(String host,int port, InetAddress localHost, in createSocket() method in FallbackTestClientSocketFactory 61 SSLSocket socket = super.createSocket(host, port, localHost, localPort); in createSocket() 65 @Override public SSLSocket createSocket(InetAddress host,int port) throws IOException { in createSocket() method in FallbackTestClientSocketFactory 66 SSLSocket socket = super.createSocket(host, port); in createSocket() [all …]
|
D | DelegatingSSLSocketFactory.java | 39 public SSLSocket createSocket() throws IOException { in createSocket() method in DelegatingSSLSocketFactory 40 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(); in createSocket() 46 public SSLSocket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket() method in DelegatingSSLSocketFactory 47 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port); in createSocket() 53 public SSLSocket createSocket(String host, int port, InetAddress localAddress, int localPort) in createSocket() method in DelegatingSSLSocketFactory 55 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port, localAddress, localPort); in createSocket() 61 public SSLSocket createSocket(InetAddress host, int port) throws IOException { in createSocket() method in DelegatingSSLSocketFactory 62 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port); in createSocket() 68 public SSLSocket createSocket(InetAddress host, int port, InetAddress localAddress, int localPort) in createSocket() method in DelegatingSSLSocketFactory 70 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() 44 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket() method in DelegatingSocketFactory 45 Socket socket = delegate.createSocket(host, port); in createSocket() 51 public Socket createSocket(String host, int port, InetAddress localAddress, int localPort) in createSocket() method in DelegatingSocketFactory 53 Socket socket = delegate.createSocket(host, port, localAddress, localPort); in createSocket() 59 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket() method in DelegatingSocketFactory 60 Socket socket = delegate.createSocket(host, port); in createSocket() 66 public Socket createSocket(InetAddress host, int port, InetAddress localAddress, int localPort) in createSocket() method in DelegatingSocketFactory 68 Socket socket = delegate.createSocket(host, port, localAddress, localPort); in createSocket()
|
D | ConnectionSpecTest.java | 69 SSLSocket socket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in tls_defaultCiphers_noFallbackIndicator() 98 SSLSocket socket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in tls_defaultCiphers_withFallbackIndicator() 131 SSLSocket socket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in tls_explicitCiphers() 170 SSLSocket socket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in tls_missingRequiredCipher() 196 SSLSocket socket = (SSLSocket) SSLSocketFactory.getDefault().createSocket(); in tls_missingTlsVersion()
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/ |
D | SSLSocketFactoryWrapper.java | 70 public Socket createSocket() throws IOException { in createSocket() method in SSLSocketFactoryWrapper 71 return mFactory.createSocket(); in createSocket() 76 public Socket createSocket(InetAddress inaddr, int i) in createSocket() method in SSLSocketFactoryWrapper 78 return mFactory.createSocket(inaddr, i); in createSocket() 82 public Socket createSocket(InetAddress inaddr, int i, in createSocket() method in SSLSocketFactoryWrapper 84 return mFactory.createSocket(inaddr, i, inaddr1, j); in createSocket() 88 public Socket createSocket(Socket socket, String s, int i, boolean flag) in createSocket() method in SSLSocketFactoryWrapper 90 return mFactory.createSocket(socket, s, i, flag); in createSocket() 94 public Socket createSocket(String s, int i) throws IOException { in createSocket() method in SSLSocketFactoryWrapper 95 return mFactory.createSocket(s, i); in createSocket() [all …]
|
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ |
D | SocketFactoryTest.java | 44 sf.createSocket(); in testCreateSocket() 62 s = sf.createSocket("localhost", 8082); in testGetDefault() 67 s = sf.createSocket("localhost", 8081, InetAddress.getLocalHost(), 8082); in testGetDefault() 72 s = sf.createSocket(InetAddress.getLocalHost(), 8081); in testGetDefault() 77 s = sf.createSocket(InetAddress.getLocalHost(), 8081, InetAddress.getLocalHost(), 8082); in testGetDefault() 86 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket() method in MySocketFactory 91 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in createSocket() method in MySocketFactory 97 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket() method in MySocketFactory 102 … public Socket createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) in createSocket() method in MySocketFactory
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLSocketFactoryImpl.java | 59 public Socket createSocket() throws IOException { in createSocket() method in OpenSSLSocketFactoryImpl 67 public Socket createSocket(String hostname, int port) throws IOException, UnknownHostException { in createSocket() method in OpenSSLSocketFactoryImpl 72 public Socket createSocket(String hostname, int port, InetAddress localHost, int localPort) in createSocket() method in OpenSSLSocketFactoryImpl 82 public Socket createSocket(InetAddress address, int port) throws IOException { in createSocket() method in OpenSSLSocketFactoryImpl 87 public Socket createSocket(InetAddress address, in createSocket() method in OpenSSLSocketFactoryImpl 100 public Socket createSocket(Socket s, String hostname, int port, boolean autoClose) in createSocket() method in OpenSSLSocketFactoryImpl
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.ecf.ssl_1.0.0.v20100529-0735.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.ecf.provider.filetransfer.httpclient_4.0.0.v20100529-0735.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/ |
D | DefaultSSLSocketFactoryTest.java | 41 f.createSocket("localhost", 0); in testCreateSocketStringint() 56 f.createSocket("localhost", 0, InetAddress.getLocalHost(), 1); in testCreateSocketStringintInetAddressint() 70 f.createSocket(InetAddress.getLocalHost(), 1); in testCreateSocketInetAddressint() 85 f.createSocket(InetAddress.getLocalHost(), 1, InetAddress in testCreateSocketInetAddressintInetAddressint() 116 f.createSocket(new Socket(), "localhost", 1, true); in testCreateSocketSocketStringintboolean()
|
/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/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
D | SSLSocketFactoriesTest.java | 78 assertNotNull(sfactory.createSocket()); in testDefaultInitialized() 135 csocket = (SSLSocket) socketFactory.createSocket(); in testSocketCreation() 146 socketFactory.createSocket("localhost", in testSocketCreation() 155 socketFactory.createSocket("localhost", in testSocketCreation() 164 csocket = (SSLSocket) socketFactory.createSocket( in testSocketCreation() 173 csocket = (SSLSocket) socketFactory.createSocket( in testSocketCreation() 188 csocket = (SSLSocket) socketFactory.createSocket( in testSocketCreation()
|
D | SSLSocketFunctionalTest.java | 85 .getSocketFactory().createSocket("localhost", in doTestInteraction() 123 .getSocketFactory().createSocket("localhost", in _doTestInteraction() 155 .getSocketFactory().createSocket("localhost", in doTestSelfInteraction()
|
/external/apache-http/src/org/apache/http/conn/scheme/ |
D | PlainSocketFactory.java | 84 public Socket createSocket() { in createSocket() method in PlainSocketFactory 102 sock = createSocket(); in connectSocket()
|
/external/apache-http/src/org/apache/http/impl/conn/ |
D | DefaultClientConnectionOperator.java | 145 Socket sock = plain_sf.createSocket(); in openConnection() 170 Socket layeredsock = layered_sf.createSocket(sock, in openConnection() 241 sock = lsf.createSocket in updateSecureConnection()
|
/external/apache-http/src/org/apache/http/conn/ |
D | MultihomePlainSocketFactory.java | 86 public Socket createSocket() { in createSocket() method in MultihomePlainSocketFactory 118 sock = createSocket(); in connectSocket()
|
/external/skia/experimental/Networking/ |
D | SkSockets.cpp | 21 fSockfd = this->createSocket(); in SkSocket() 29 int SkSocket::createSocket() { in createSocket() function in SkSocket 332 fSockfd = this->createSocket(); in onFailedConnection()
|
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/core/socket/ |
D | SocketFactory.java | 39 public Socket createSocket(InetAddress host, int port) throws IOException; in createSocket() method
|
/external/mockftpserver/tags/1.2.1/src/main/java/org/mockftpserver/core/socket/ |
D | SocketFactory.java | 39 public Socket createSocket(InetAddress host, int port) throws IOException; in createSocket() method
|
/external/mockftpserver/tags/1.2.4/src/main/java/org/mockftpserver/core/socket/ |
D | SocketFactory.java | 39 public Socket createSocket(InetAddress host, int port) throws IOException; in createSocket() method
|
/external/mockftpserver/tags/1.2/src/main/java/org/mockftpserver/core/socket/ |
D | SocketFactory.java | 39 public Socket createSocket(InetAddress host, int port) throws IOException; in createSocket() method
|
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/socket/ |
D | SocketFactory.java | 39 public Socket createSocket(InetAddress host, int port) throws IOException; in createSocket() method
|