HomeSort by relevance Sort by last modified time
    Searched defs:createSocket (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/socket/
DefaultSocketFactory.java 38 * @see org.mockftpserver.core.socket.SocketFactory#createSocket(java.net.InetAddress, int)
40 public Socket createSocket(InetAddress host, int port) throws IOException {
SocketFactory.java 39 public Socket createSocket(InetAddress host, int port) throws IOException;
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/socket/
DefaultSocketFactory.java 38 * @see org.mockftpserver.core.socket.SocketFactory#createSocket(java.net.InetAddress, int)
40 public Socket createSocket(InetAddress host, int port) throws IOException {
SocketFactory.java 39 public Socket createSocket(InetAddress host, int port) throws IOException;
  /frameworks/base/core/java/org/apache/http/conn/scheme/
LayeredSocketFactory.java 70 Socket createSocket(
SocketFactory.java 70 Socket createSocket()
79 * {@link #createSocket createSocket}.
  /libcore/support/src/test/java/tests/net/
DelegatingSocketFactory.java 47 public Socket createSocket() throws IOException {
48 Socket socket = mDelegate.createSocket();
53 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
54 Socket socket = mDelegate.createSocket(host, port);
59 public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
61 Socket socket = mDelegate.createSocket(host, port, localHost, localPort);
66 public Socket createSocket(InetAddress host, int port) throws IOException {
67 Socket socket = mDelegate.createSocket(host, port);
72 public Socket createSocket(InetAddress address, int port, InetAddress localAddress,
74 Socket socket = mDelegate.createSocket(address, port, localAddress, localPort)
    [all...]
DelegatingSSLSocketFactory.java 59 public Socket createSocket() throws IOException {
60 SSLSocket socket = (SSLSocket) mDelegate.createSocket();
65 public Socket createSocket(Socket s, String host, int port, boolean autoClose)
67 SSLSocket socket = (SSLSocket) mDelegate.createSocket(s, host, port, autoClose);
72 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
73 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port);
78 public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
80 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port, localHost, localPort);
85 public Socket createSocket(InetAddress host, int port) throws IOException {
86 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port)
    [all...]
  /external/conscrypt/src/compat/java/org/conscrypt/
BaseOpenSSLSocketAdapterFactory.java 44 public Socket createSocket() throws IOException {
45 return wrap((OpenSSLSocketImpl) delegate.createSocket());
49 public Socket createSocket(String hostname, int port)
51 return wrap((OpenSSLSocketImpl) delegate.createSocket(hostname, port));
55 public Socket createSocket(String hostname, int port, InetAddress localHost, int localPort)
58 (OpenSSLSocketImpl) delegate.createSocket(hostname, port, localHost, localPort));
61 public Socket createSocket(InetAddress address, int port) throws IOException {
62 return wrap((OpenSSLSocketImpl) delegate.createSocket(address, port));
66 public Socket createSocket(InetAddress address,
72 (OpenSSLSocketImpl) delegate.createSocket(address, port, localAddress, localPort))
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/socket/
StubSocketFactory.java 46 * @see org.mockftpserver.core.socket.SocketFactory#createSocket(java.net.InetAddress, int)
48 public Socket createSocket(InetAddress host, int port) throws IOException {
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/socket/
StubSocketFactory.java 48 * @see org.mockftpserver.core.socket.SocketFactory#createSocket(java.net.InetAddress, int)
50 public Socket createSocket(InetAddress host, int port) throws IOException {
  /external/nist-sip/java/gov/nist/core/net/
NetworkLayer.java 80 public Socket createSocket(InetAddress address, int port) throws IOException;
91 public Socket createSocket(InetAddress address, int port, InetAddress localAddress) throws IOException;
109 public Socket createSocket(InetAddress address, int port,
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DelegatingSSLSocketFactory.java 39 public SSLSocket createSocket() throws IOException {
40 SSLSocket sslSocket = (SSLSocket) delegate.createSocket();
45 public SSLSocket createSocket(String host, int port) throws IOException, UnknownHostException {
46 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port);
51 public SSLSocket createSocket(String host, int port, InetAddress localAddress, int localPort)
53 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port, localAddress, localPort);
58 public SSLSocket createSocket(InetAddress host, int port) throws IOException {
59 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port);
64 public SSLSocket createSocket(InetAddress host, int port, InetAddress localAddress, int localPort)
66 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port, localAddress, localPort)
    [all...]
DelegatingSocketFactory.java 37 public Socket createSocket() throws IOException {
38 Socket socket = delegate.createSocket();
43 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
44 Socket socket = delegate.createSocket(host, port);
49 public Socket createSocket(String host, int port, InetAddress localAddress, int localPort)
51 Socket socket = delegate.createSocket(host, port, localAddress, localPort);
56 public Socket createSocket(InetAddress host, int port) throws IOException {
57 Socket socket = delegate.createSocket(host, port);
62 public Socket createSocket(InetAddress host, int port, InetAddress localAddress, int localPort)
64 Socket socket = delegate.createSocket(host, port, localAddress, localPort)
    [all...]
  /libcore/ojluni/src/main/java/javax/net/
SocketFactory.java 124 public Socket createSocket() throws IOException {
162 public abstract Socket createSocket(String host, int port)
194 createSocket(String host, int port, InetAddress localHost, int localPort)
220 public abstract Socket createSocket(InetAddress host, int port)
251 createSocket(InetAddress address, int port,
271 public Socket createSocket() {
275 public Socket createSocket(String host, int port)
281 public Socket createSocket(InetAddress address, int port)
287 public Socket createSocket(String host, int port,
294 public Socket createSocket(InetAddress address, int port
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/
SocketFactoryTest.java 39 * Class under test for java.net.Socket createSocket()
44 sf.createSocket();
62 s = sf.createSocket("localhost", 8082);
67 s = sf.createSocket("localhost", 8081, InetAddress.getLocalHost(), 8082);
72 s = sf.createSocket(InetAddress.getLocalHost(), 8081);
77 s = sf.createSocket(InetAddress.getLocalHost(), 8081, InetAddress.getLocalHost(), 8082);
86 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
91 public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
97 public Socket createSocket(InetAddress host, int port) throws IOException {
102 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, int localPort
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLSocketFactoryImpl.java 59 public Socket createSocket() throws IOException {
67 public Socket createSocket(String hostname, int port) throws IOException, UnknownHostException {
72 public Socket createSocket(String hostname, int port, InetAddress localHost, int localPort)
82 public Socket createSocket(InetAddress address, int port) throws IOException {
87 public Socket createSocket(InetAddress address,
100 public Socket createSocket(Socket s, String hostname, int port, boolean autoClose)
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
SSLSocketFactoryImpl.java 17 public Socket createSocket(Socket socket, String s, int i, boolean flag)
47 * @see javax.net.SocketFactory#createSocket(java.lang.String, int)
50 public Socket createSocket(String arg0, int arg1) throws IOException, UnknownHostException {
56 * @see javax.net.SocketFactory#createSocket(java.net.InetAddress, int)
59 public Socket createSocket(InetAddress arg0, int arg1) throws IOException {
65 * @see javax.net.SocketFactory#createSocket(java.lang.String, int, java.net.InetAddress, int)
68 public Socket createSocket(String arg0, int arg1, InetAddress arg2, int arg3) throws IOException, UnknownHostException {
74 * @see javax.net.SocketFactory#createSocket(java.net.InetAddress, int, java.net.InetAddress, int)
77 public Socket createSocket(InetAddress arg0, int arg1, InetAddress arg2, int arg3) throws IOException {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/
SocketFactoryTest.java 45 Socket s = sf.createSocket();
52 msf.createSocket();
63 Socket s = sf.createSocket(InetAddress.getLocalHost().getHostName(), sport);
68 sf.createSocket("1.2.3.4hello", sport);
75 sf.createSocket(InetAddress.getLocalHost().getHostName(), invalidPorts[i]);
82 sf.createSocket(InetAddress.getLocalHost().getHostName(), s.getLocalPort());
89 f.createSocket(InetAddress.getLocalHost().getHostName(), 8082);
100 Socket s = sf.createSocket(InetAddress.getLocalHost(), sport);
106 sf.createSocket(InetAddress.getLocalHost(), invalidPorts[i]);
113 sf.createSocket(InetAddress.getLocalHost(), s.getLocalPort())
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
SSLSocketFactoryWrapper.java 70 public Socket createSocket() throws IOException {
71 return mFactory.createSocket();
76 public Socket createSocket(InetAddress inaddr, int i)
78 return mFactory.createSocket(inaddr, i);
82 public Socket createSocket(InetAddress inaddr, int i,
84 return mFactory.createSocket(inaddr, i, inaddr1, j);
88 public Socket createSocket(Socket socket, String s, int i, boolean flag)
90 return mFactory.createSocket(socket, s, i, flag);
94 public Socket createSocket(String s, int i) throws IOException {
95 return mFactory.createSocket(s, i)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.ssl_1.0.0.v20100529-0735.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.ecf.ssl_1.1.0.v20130604-1622.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.ecf.ssl_1.1.0.v20130604-1622.jar 
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
DefaultSSLSocketFactoryTest.java 36 * Class under test for Socket createSocket(String, int)
41 f.createSocket("localhost", 0);
51 * Class under test for Socket createSocket(String, int, InetAddress, int)
56 f.createSocket("localhost", 0, InetAddress.getLocalHost(), 1);
65 * Class under test for Socket createSocket(InetAddress, int)
70 f.createSocket(InetAddress.getLocalHost(), 1);
79 * Class under test for Socket createSocket(InetAddress, int, InetAddress,
85 f.createSocket(InetAddress.getLocalHost(), 1, InetAddress
111 * Class under test for Socket createSocket(Socket, String, int, boolean)
116 f.createSocket(new Socket(), "localhost", 1, true)
    [all...]
  /external/apache-http/src/org/apache/http/conn/
MultihomePlainSocketFactory.java 54 * {@link #createSocket()} method.
86 public Socket createSocket() {
118 sock = createSocket();
176 // This class check assumes that createSocket() calls the constructor

Completed in 700 milliseconds

1 2 3 4 5 6