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

/libcore/luni/src/main/java/java/net/
H A DSocket.java774 * by the SocketAddress {@code remoteAddr}.
776 * @param remoteAddr
784 public void connect(SocketAddress remoteAddr) throws IOException { argument
785 connect(remoteAddr, 0);
790 * by the SocketAddress {@code remoteAddr} with the specified timeout. The
794 * @param remoteAddr
806 public void connect(SocketAddress remoteAddr, int timeout) throws IOException { argument
814 if (remoteAddr == null) {
815 throw new IllegalArgumentException("remoteAddr == null");
818 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.java514 public void connect(SocketAddress remoteAddr, int timeout) throws IOException { argument
521 super.connect(remoteAddr, timeout);

Completed in 39 milliseconds