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

1 2 3 4 5 6 7 8

  /external/conscrypt/testing/src/main/java/tests/net/
DelegatingSocketFactory.java 40 public Socket createSocket() throws IOException {
41 Socket socket = mDelegate.createSocket();
45 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
46 Socket socket = mDelegate.createSocket(host, port);
50 public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
52 Socket socket = mDelegate.createSocket(host, port, localHost, localPort);
56 public Socket createSocket(InetAddress host, int port) throws IOException {
57 Socket socket = mDelegate.createSocket(host, port);
61 public Socket createSocket(InetAddress address, int port, InetAddress localAddress,
63 Socket socket = mDelegate.createSocket(address, port, localAddress, localPort)
    [all...]
DelegatingSSLSocketFactory.java 49 public Socket createSocket() throws IOException {
50 SSLSocket socket = (SSLSocket) mDelegate.createSocket();
54 public Socket createSocket(Socket s, String host, int port, boolean autoClose)
56 SSLSocket socket = (SSLSocket) mDelegate.createSocket(s, host, port, autoClose);
60 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
61 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port);
65 public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
67 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port, localHost, localPort);
71 public Socket createSocket(InetAddress host, int port) throws IOException {
72 SSLSocket socket = (SSLSocket) mDelegate.createSocket(host, port)
    [all...]
  /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/android/src/main/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 38 @Override public SSLSocket createSocket() throws IOException {
39 SSLSocket sslSocket = (SSLSocket) delegate.createSocket();
43 @Override public SSLSocket createSocket(String host, int port) throws IOException {
44 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port);
48 @Override public SSLSocket createSocket(
50 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port, localAddress, localPort);
54 @Override public SSLSocket createSocket(InetAddress host, int port) throws IOException {
55 SSLSocket sslSocket = (SSLSocket) delegate.createSocket(host, port);
59 @Override public SSLSocket createSocket(
61 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 125 public Socket createSocket() throws IOException {
163 public abstract Socket createSocket(String host, int port)
195 createSocket(String host, int port, InetAddress localHost, int localPort)
221 public abstract Socket createSocket(InetAddress host, int port)
252 createSocket(InetAddress address, int port,
272 public Socket createSocket() {
276 public Socket createSocket(String host, int port)
282 public Socket createSocket(InetAddress address, int port)
288 public Socket createSocket(String host, int port,
295 public Socket createSocket(InetAddress address, int port
    [all...]
  /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/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLSocketFactoryImpl.java 86 public Socket createSocket() throws IOException {
98 public Socket createSocket(String hostname, int port) throws IOException, UnknownHostException {
109 public Socket createSocket(String hostname, int port, InetAddress localHost, int localPort)
121 public Socket createSocket(InetAddress address, int port) throws IOException {
132 public Socket createSocket(InetAddress address, int port, InetAddress localAddress,
144 public Socket createSocket(Socket socket, String hostname, int port, boolean autoClose)
  /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...]
  /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-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
  /external/apache-http/src/org/apache/http/conn/scheme/
PlainSocketFactory.java 84 public Socket createSocket() {
102 sock = createSocket();
150 // This class check assumes that createSocket() calls the constructor
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/output/
TcpClientOutput.java 49 final Socket socket = createSocket(options);
83 protected Socket createSocket(final AgentOptions options)

Completed in 332 milliseconds

1 2 3 4 5 6 7 8