Home
last modified time | relevance | path

Searched defs:createSocket (Results 1 – 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/javax/net/
DSocketFactory.java125 public Socket createSocket() throws IOException { in createSocket() method in SocketFactory
163 public abstract Socket createSocket(String host, int port) in createSocket() method in SocketFactory
195 createSocket(String host, int port, InetAddress localHost, int localPort) in createSocket() method in SocketFactory
221 public abstract Socket createSocket(InetAddress host, int port) in createSocket() method in SocketFactory
252 createSocket(InetAddress address, int port, in createSocket() method in SocketFactory
272 public Socket createSocket() { in createSocket() method in DefaultSocketFactory
276 public Socket createSocket(String host, int port) in createSocket() method in DefaultSocketFactory
282 public Socket createSocket(InetAddress address, int port) in createSocket() method in DefaultSocketFactory
288 public Socket createSocket(String host, int port, in createSocket() method in DefaultSocketFactory
295 public Socket createSocket(InetAddress address, int port, in createSocket() method in DefaultSocketFactory
/libcore/luni/src/test/java/libcore/javax/net/ssl/
DFakeSSLSocketFactory.java40 public Socket createSocket(Socket s, String host, int port, boolean autoClose) { in createSocket() method in FakeSSLSocketFactory
45 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, in createSocket() method in FakeSSLSocketFactory
51 public Socket createSocket(InetAddress host, int port) { in createSocket() method in FakeSSLSocketFactory
56 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) { in createSocket() method in FakeSSLSocketFactory
61 public Socket createSocket(String host, int port) { in createSocket() method in FakeSSLSocketFactory
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
DSSLSocketFactoryImpl.java17 public Socket createSocket(Socket socket, String s, int i, boolean flag) in createSocket() method in SSLSocketFactoryImpl
50 public Socket createSocket(String arg0, int arg1) throws IOException, UnknownHostException { in createSocket() method in SSLSocketFactoryImpl
59 public Socket createSocket(InetAddress arg0, int arg1) throws IOException { in createSocket() method in SSLSocketFactoryImpl
68 …public Socket createSocket(String arg0, int arg1, InetAddress arg2, int arg3) throws IOException, … in createSocket() method in SSLSocketFactoryImpl
77 …public Socket createSocket(InetAddress arg0, int arg1, InetAddress arg2, int arg3) throws IOExcept… in createSocket() method in SSLSocketFactoryImpl
/libcore/luni/src/test/java/libcore/java/net/
DDelegatingSocketFactory.java46 public Socket createSocket() throws IOException { in createSocket() method in DelegatingSocketFactory
52 public Socket createSocket(String host, int port) throws IOException { in createSocket() method in DelegatingSocketFactory
58 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in createSocket() method in DelegatingSocketFactory
65 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket() method in DelegatingSocketFactory
71 public Socket createSocket(InetAddress address, int port, InetAddress localAddress, in createSocket() method in DelegatingSocketFactory
/libcore/ojluni/annotations/hiddenapi/javax/net/ssl/
DSSLSocketFactory.java55 public abstract java.net.Socket createSocket( in createSocket() method in SSLSocketFactory
60 public java.net.Socket createSocket( in createSocket() method in SSLSocketFactory
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/
DSocketFactoryTest.java286 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { in createSocket() method in MySocketFactory
291 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in createSocket() method in MySocketFactory
297 public Socket createSocket(InetAddress host, int port) throws IOException { in createSocket() method in MySocketFactory
302 public Socket createSocket(InetAddress address, int port, in createSocket() method in MySocketFactory
/libcore/support/src/test/java/libcore/javax/net/ssl/
DTestSSLContext.java391 public Socket createSocket(String host, int port) in clientAuth() method in TestSSLContext
395 public Socket createSocket(String host, int port, InetAddress localHost, int localPort) in clientAuth() method in TestSSLContext
399 public Socket createSocket(InetAddress host, int port) throws IOException { in clientAuth() method in TestSSLContext
402 public Socket createSocket(InetAddress address, int port, in clientAuth() method in TestSSLContext
414 public Socket createSocket(Socket s, String host, int port, boolean autoClose) in clientAuth() method in TestSSLContext
/libcore/ojluni/src/main/java/sun/net/
DNetworkClient.java196 protected Socket createSocket() throws IOException { in createSocket() method in NetworkClient