HomeSort by relevance Sort by last modified time
    Searched refs:hostAddress (Results 1 - 14 of 14) sorted by null

  /frameworks/base/core/java/android/net/
NetworkUtils.java 107 * @param hostAddress an int corresponding to the IPv4 address in network byte order
109 public static InetAddress intToInetAddress(int hostAddress) {
110 byte[] addressBytes = { (byte)(0xff & hostAddress),
111 (byte)(0xff & (hostAddress >> 8)),
112 (byte)(0xff & (hostAddress >> 16)),
113 (byte)(0xff & (hostAddress >> 24)) };
IConnectivityManager.aidl 65 boolean requestRouteToHost(int networkType, int hostAddress);
67 boolean requestRouteToHostAddress(int networkType, in byte[] hostAddress);
ConnectivityManager.java 503 * @param hostAddress the IP address of the host to which the route is desired
506 public boolean requestRouteToHost(int networkType, int hostAddress) {
507 InetAddress inetAddress = NetworkUtils.intToInetAddress(hostAddress);
522 * @param hostAddress the IP address of the host to which the route is desired
526 public boolean requestRouteToHostAddress(int networkType, InetAddress hostAddress) {
527 byte[] address = hostAddress.getAddress();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
InetAddressThreadTest.java 87 String hostAddress = ia.getHostAddress();
102 if (!correctAddress.equals(hostAddress)) {
107 + hostAddress
  /external/jmdns/src/javax/jmdns/impl/
HostInfo.java 162 DNSRecord.Address hostAddress = this.getDNSAddressRecord(record.getRecordType(), record.isUnique(), DNSConstants.DNS_TTL);
163 if (hostAddress != null) {
164 return hostAddress.sameType(record) && hostAddress.sameName(record) && (!hostAddress.sameValue(record));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help.appserver_3.1.400.v20100427.jar 
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EasSyncService.java     [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java     [all...]
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 453 milliseconds