Searched defs:InetSocketAddress (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
H A DInetSocketAddress.java53 public class InetSocketAddress class in inherits:SocketAddress
157 public InetSocketAddress() { method in class:InetSocketAddress
174 public InetSocketAddress(int port) { method in class:InetSocketAddress
193 public InetSocketAddress(InetAddress addr, int port) { method in class:InetSocketAddress
226 public InetSocketAddress(String hostname, int port) { method in class:InetSocketAddress
239 private InetSocketAddress(int port, String hostname) { method in class:InetSocketAddress
260 * @return a {@code InetSocketAddress} representing the unresolved
264 public static InetSocketAddress createUnresolved(String host, int port) {
265 return new InetSocketAddress(checkPort(port), checkHost(host));
322 InetSocketAddress
[all...]

Completed in 48 milliseconds