Searched defs:Socket (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
H A DSocket.java51 * @see java.net.Socket#setSocketImplFactory(java.net.SocketImplFactory)
57 class Socket implements java.io.Closeable { class in inherits:java.io.Closeable
70 * The implementation of this Socket.
86 public Socket() { method in class:Socket
99 * <UL> <LI><code>Socket s = new Socket(Proxy.NO_PROXY);</code> will create
101 * <LI><code>Socket s = new Socket(new Proxy(Proxy.Type.SOCKS, new InetSocketAddress("socks.mydom.com", 1080)));</code>
118 public Socket(Proxy proxy) { method in class:Socket
128 checkAddress (epoint.getAddress(), "Socket");
164 protected Socket(SocketImpl impl) throws SocketException { method in class:Socket
207 public Socket(String host, int port) method in class:Socket
242 public Socket(InetAddress address, int port) throws IOException { method in class:Socket
280 public Socket(String host, int port, InetAddress localAddr, method in class:Socket
319 public Socket(InetAddress address, int port, InetAddress localAddr, method in class:Socket
366 public Socket(String host, int port, boolean stream) throws IOException { method in class:Socket
409 public Socket(InetAddress host, int port, boolean stream) throws IOException { method in class:Socket
414 private Socket(SocketAddress address, SocketAddress localAddr, method in class:Socket
[all...]

Completed in 208 milliseconds