Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/net/
DServerSocket.java330 public void bind(SocketAddress endpoint) throws IOException { in bind() argument
331 bind(endpoint, 50); in bind()
359 public void bind(SocketAddress endpoint, int backlog) throws IOException { in bind() argument
364 if (endpoint == null) in bind()
365 endpoint = new InetSocketAddress(0); in bind()
366 if (!(endpoint instanceof InetSocketAddress)) in bind()
368 InetSocketAddress epoint = (InetSocketAddress) endpoint; in bind()
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()
/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/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