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

/frameworks/base/core/java/android/net/
H A DNetwork.java101 * Operates the same as {@code InetAddress.getAllByName} except that host
108 public InetAddress[] getAllByName(String host) throws UnknownHostException { method in class:Network
140 InetAddress[] hostAddresses = getAllByName(host);
230 return Arrays.asList(Network.this.getAllByName(hostname));
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkMonitor.java683 // Limits the list of IP addresses returned by getAllByName or tried by openConnection to at
692 public InetAddress[] getAllByName(String host) throws UnknownHostException { method in class:NetworkMonitor.OneAddressPerFamilyNetwork
693 List<InetAddress> addrs = Arrays.asList(super.getAllByName(host));
838 InetAddress[] addresses = mNetwork.getAllByName(host);

Completed in 832 milliseconds