Home
last modified time | relevance | path

Searched refs:endpoint (Results 1 – 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
DSocksSocketImpl.java262 InetSocketAddress endpoint, in connectV4() argument
264 if (!(endpoint.getAddress() instanceof Inet4Address)) { in connectV4()
269 out.write((endpoint.getPort() >> 8) & 0xff); in connectV4()
270 out.write((endpoint.getPort() >> 0) & 0xff); in connectV4()
271 out.write(endpoint.getAddress().getAddress()); in connectV4()
290 external_address = endpoint; in connectV4()
327 protected void connect(SocketAddress endpoint, int timeout) throws IOException { in connect() argument
338 if (endpoint == null || !(endpoint instanceof InetSocketAddress)) in connect()
340 InetSocketAddress epoint = (InetSocketAddress) endpoint; in connect()
DServerSocket.java352 public void bind(SocketAddress endpoint) throws IOException { in bind() argument
353 bind(endpoint, 50); in bind()
381 public void bind(SocketAddress endpoint, int backlog) throws IOException { in bind() argument
386 if (endpoint == null) in bind()
387 endpoint = new InetSocketAddress(0); in bind()
388 if (!(endpoint instanceof InetSocketAddress)) in bind()
390 InetSocketAddress epoint = (InetSocketAddress) endpoint; in bind()
DSocket.java594 public void connect(SocketAddress endpoint) throws IOException { in connect() argument
595 connect(endpoint, 0); in connect()
615 public void connect(SocketAddress endpoint, int timeout) throws IOException { in connect() argument
616 if (endpoint == null) in connect()
628 if (!(endpoint instanceof InetSocketAddress)) in connect()
631 InetSocketAddress epoint = (InetSocketAddress) endpoint; in connect()
/libcore/ojluni/annotations/hiddenapi/java/net/
DSocksSocketImpl.java91 java.net.InetSocketAddress endpoint, in connectV4() argument
97 protected void connect(java.net.SocketAddress endpoint, int timeout) in connect() argument
DServerSocket.java70 public void bind(java.net.SocketAddress endpoint) throws java.io.IOException { in bind() argument
74 public void bind(java.net.SocketAddress endpoint, int backlog) throws java.io.IOException { in bind() argument
DSocket.java105 public void connect(java.net.SocketAddress endpoint) throws java.io.IOException { in connect() argument
109 public void connect(java.net.SocketAddress endpoint, int timeout) throws java.io.IOException { in connect() argument
/libcore/ojluni/annotations/mmodule/java/net/
DServerSocket.annotated.java43 public void bind(java.net.SocketAddress endpoint) throws java.io.IOException { throw new RuntimeExc… in bind() argument
45 public void bind(java.net.SocketAddress endpoint, int backlog) throws java.io.IOException { throw n… in bind() argument
DSocket.annotated.java58 public void connect(java.net.SocketAddress endpoint) throws java.io.IOException { throw new Runtime… in connect() argument
60 public void connect(java.net.SocketAddress endpoint, int timeout) throws java.io.IOException { thro… in connect() argument
/libcore/luni/src/test/java/libcore/java/net/
DURLConnectionTest.java2345 public void connect(SocketAddress endpoint, int timeout)
3611 …@Override public void connect(SocketAddress endpoint) throws IOException { delegate.connect(endpoi…
3612 …verride public void connect(SocketAddress endpoint, int timeout) throws IOException { delegate.con…