Searched refs:remoteAddr (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/net/
H A DSocket.java775 * by the SocketAddress {@code remoteAddr}.
777 * @param remoteAddr
785 public void connect(SocketAddress remoteAddr) throws IOException { argument
786 connect(remoteAddr, 0);
791 * by the SocketAddress {@code remoteAddr} with the specified timeout. The
795 * @param remoteAddr
807 public void connect(SocketAddress remoteAddr, int timeout) throws IOException { argument
815 if (remoteAddr == null) {
816 throw new IllegalArgumentException("remoteAddr == null");
819 if (!(remoteAddr instanceo
[all...]
H A DSocketImpl.java255 * @param remoteAddr
262 protected abstract void connect(SocketAddress remoteAddr, int timeout) throws IOException; argument
H A DPlainSocketImpl.java457 protected void connect(SocketAddress remoteAddr, int timeout) throws IOException { argument
458 InetSocketAddress inetAddr = (InetSocketAddress) remoteAddr;
/libcore/luni/src/main/java/java/nio/
H A DSocketChannelImpl.java525 public void connect(SocketAddress remoteAddr, int timeout) throws IOException { argument
532 super.connect(remoteAddr, timeout);

Completed in 440 milliseconds