Searched refs:getAllByName (Results 1 - 10 of 10) sorted by relevance

/external/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DDns.java22 * Domain name service. Prefer this over {@link InetAddress#getAllByName} to
27 @Override public InetAddress[] getAllByName(String host) throws UnknownHostException {
28 return InetAddress.getAllByName(host);
32 InetAddress[] getAllByName(String host) throws UnknownHostException; method in interface:Dns
/external/smack/src/org/jivesoftware/smack/proxy/
H A DDirectSocketFactory.java47 InetAddress resolved[] = InetAddress.getAllByName(host);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DInetAddressTest.java83 * @tests java.net.InetAddress#getAllByName(java.lang.String)
88 // java.net.InetAddress.getAllByName(java.lang.String)
89 InetAddress[] all = InetAddress.getAllByName("localhost");
100 InetAddress[] ias = InetAddress.getAllByName(null);
105 ias = InetAddress.getAllByName("");
113 InetAddress[] list = InetAddress.getAllByName("192.168.0.1");
/external/apache-http/src/org/apache/http/conn/
H A DMultihomePlainSocketFactory.java128 InetAddress[] inetadrs = InetAddress.getAllByName(host);
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultClientConnectionOperator.java137 InetAddress[] addresses = InetAddress.getAllByName(target.getHostName());
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DRouteSelector.java198 socketAddresses = null; // Clear the addresses. Necessary if getAllByName() below throws!
216 socketAddresses = dns.getAllByName(socketHost);
/external/smack/src/org/xbill/DNS/
H A DAddress.java276 getAllByName(String name) throws UnknownHostException { method in class:Address
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DKnownHosts.java316 ipAdresses = InetAddress.getAllByName(hostname);
711 ipAdresses = InetAddress.getAllByName(hostname);
/external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
H A DRouteSelectorTest.java417 @Override public InetAddress[] getAllByName(String host) throws UnknownHostException { method in class:RouteSelectorTest.FakeDns
H A DURLConnectionTest.java739 for (InetAddress inetAddress : InetAddress.getAllByName(server.getHostName())) {
1234 assertTrue(call, call.contains("site=" + InetAddress.getAllByName(url.getHost())[0]));
1249 assertTrue(call, call.contains("site=" + InetAddress.getAllByName(url.getHost())[0]));
2031 for (InetAddress inetAddress : InetAddress.getAllByName(server.getHostName())) {

Completed in 1300 milliseconds