Searched refs:endpoint (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/main/java/java/net/ |
D | ServerSocket.java | 330 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()
|
D | SocksSocketImpl.java | 262 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/ |
D | ServerSocket.annotated.java | 43 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
|
D | Socket.annotated.java | 58 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/ |
D | SocksSocketImpl.java | 91 java.net.InetSocketAddress endpoint, in connectV4() argument 97 protected void connect(java.net.SocketAddress endpoint, int timeout) in connect() argument
|
D | ServerSocket.java | 70 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
|
D | Socket.java | 105 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
|