OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getAllByName
(Results
1 - 25
of
29
) sorted by null
1
2
/external/okhttp/src/main/java/com/squareup/okhttp/internal/
Dns.java
22
* 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;
/external/smack/src/org/jivesoftware/smack/proxy/
DirectSocketFactory.java
47
InetAddress resolved[] = InetAddress.
getAllByName
(host);
/cts/tests/tests/net/src/android/net/cts/
DnsTest.java
58
addrs = InetAddress.
getAllByName
("www.google.com");
75
addrs = InetAddress.
getAllByName
("ipv6.google.com");
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
InetAddressTest.java
83
* @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/
MultihomePlainSocketFactory.java
128
InetAddress[] inetadrs = InetAddress.
getAllByName
(host);
/external/apache-http/src/org/apache/http/impl/conn/
DefaultClientConnectionOperator.java
137
InetAddress[] addresses = InetAddress.
getAllByName
(target.getHostName());
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RouteSelector.java
198
socketAddresses = null; // Clear the addresses. Necessary if
getAllByName
() below throws!
216
socketAddresses = dns.
getAllByName
(socketHost);
/external/smack/src/org/xbill/DNS/
Address.java
276
getAllByName
(String name) throws UnknownHostException {
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
KnownHosts.java
316
ipAdresses = InetAddress.
getAllByName
(hostname);
711
ipAdresses = InetAddress.
getAllByName
(hostname);
/frameworks/base/core/java/android/net/
CaptivePortalTracker.java
420
inetAddress = InetAddress.
getAllByName
(hostname);
/libcore/luni/src/main/java/java/net/
InetAddress.java
54
* <p>The {@code
getAllByName
} method accepts IPv4 addresses in the "decimal-dotted-quad" form only:
60
* <p>The {@code
getAllByName
} method accepts IPv6 addresses in the following forms (this text
213
public static InetAddress[]
getAllByName
(String host) throws UnknownHostException {
464
* @hide used by frameworks/base to ensure that a
getAllByName
won't cause a DNS lookup.
762
* purposes of this API. Most callers probably want {@link #
getAllByName
} instead.)
[
all
...]
Socket.java
109
InetAddress[] dstAddresses = InetAddress.
getAllByName
(dstName);
112
// address, or
getAllByName
would have thrown UnknownHostException.
[
all
...]
/external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
RouteSelectorTest.java
417
@Override public InetAddress[]
getAllByName
(String host) throws UnknownHostException {
URLConnectionTest.java
739
for (InetAddress inetAddress : InetAddress.
getAllByName
(server.getHostName())) {
[
all
...]
/packages/experimental/StrictModeTest/src/com/android/strictmodetest/
StrictModeActivity.java
156
InetAddress[] addrs = InetAddress.
getAllByName
("www.l.google.com");
/libcore/luni/src/test/java/libcore/java/net/
URLTest.java
56
for (InetAddress inetAddress : InetAddress.
getAllByName
("localhost")) {
OldSocketTest.java
[
all
...]
URLConnectionTest.java
[
all
...]
/frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java
165
for (InetAddress remote : InetAddress.
getAllByName
(server)) {
[
all
...]
/frameworks/base/services/java/com/android/server/
ConnectivityService.java
[
all
...]
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/5/
android.jar
Completed in 696 milliseconds
1
2