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

/libcore/luni/src/main/java/java/net/
H A DInet6Address.java85 public static Inet6Address getByAddress(String host, byte[] addr, int scope_id) method in class:Inet6Address
115 public static Inet6Address getByAddress(String host, byte[] addr, method in class:Inet6Address
118 Inet6Address address = Inet6Address.getByAddress(host, addr, 0);
H A DInetAddress.java743 * Equivalent to {@code getByAddress(null, ipAddress)}. Handy for addresses with
746 public static InetAddress getByAddress(byte[] ipAddress) throws UnknownHostException { method in class:InetAddress
747 return getByAddress(null, ipAddress, 0);
766 public static InetAddress getByAddress(String hostName, byte[] ipAddress) throws UnknownHostException { method in class:InetAddress
767 return getByAddress(hostName, ipAddress, 0);
770 private static InetAddress getByAddress(String hostName, byte[] ipAddress, int scopeId) throws UnknownHostException { method in class:InetAddress

Completed in 108 milliseconds