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

/libcore/ojluni/src/test/java/net/Socket/
H A DShutdownInput.java27 * @summary Socket.getInputStream().available() not clear for
31 package test.java.net.Socket;
38 import java.net.Socket;
51 Socket s1 = new Socket(iaddr, ss.getLocalPort());
52 Socket s2 = ss.accept() ) {
71 public static void test(Socket s1, Socket s2, String mesg) throws Exception {
/libcore/ojluni/src/main/java/java/net/
H A DSocket.java50 * @see java.net.Socket#setSocketImplFactory(java.net.SocketImplFactory)
56 class Socket implements java.io.Closeable { class in inherits:java.io.Closeable
69 * The implementation of this Socket.
85 public Socket() { method in class:Socket
98 * <UL> <LI>{@code Socket s = new Socket(Proxy.NO_PROXY);} will create
100 * <LI>{@code Socket s = new Socket(new Proxy(Proxy.Type.SOCKS, new InetSocketAddress("socks.mydom.com", 1080)));}
117 public Socket(Proxy proxy) { method in class:Socket
131 checkAddress (epoint.getAddress(), "Socket");
170 protected Socket(SocketImpl impl) throws SocketException { method in class:Socket
214 public Socket(String host, int port) method in class:Socket
248 public Socket(InetAddress address, int port) throws IOException { method in class:Socket
289 public Socket(String host, int port, InetAddress localAddr, method in class:Socket
331 public Socket(InetAddress address, int port, InetAddress localAddr, method in class:Socket
380 public Socket(String host, int port, boolean stream) throws IOException { method in class:Socket
422 public Socket(InetAddress host, int port, boolean stream) throws IOException { method in class:Socket
436 private Socket(InetAddress[] addresses, int port, SocketAddress localAddr, method in class:Socket
[all...]

Completed in 22 milliseconds