HomeSort by relevance Sort by last modified time
    Searched refs:hostAddress (Results 1 - 17 of 17) 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 70 boolean requestRouteToHost(int networkType, int hostAddress);
72 boolean requestRouteToHostAddress(int networkType, in byte[] hostAddress);
ConnectivityManager.java 738 * @param hostAddress the IP address of the host to which the route is desired
741 public boolean requestRouteToHost(int networkType, int hostAddress) {
742 InetAddress inetAddress = NetworkUtils.intToInetAddress(hostAddress);
757 * @param hostAddress the IP address of the host to which the route is desired
761 public boolean requestRouteToHostAddress(int networkType, InetAddress hostAddress) {
762 byte[] address = hostAddress.getAddress();
    [all...]
  /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/smack/src/org/jivesoftware/smack/
ConnectionConfiguration.java 25 import org.jivesoftware.smack.util.dns.HostAddress;
55 protected List<HostAddress> hostAddresses;
260 public void setUsedHostAddress(HostAddress hostAddress) {
261 this.host = hostAddress.getFQDN();
262 this.port = hostAddress.getPort();
696 public List<HostAddress> getHostAddresses() {
778 hostAddresses = new ArrayList<HostAddress>(1);
779 HostAddress hostAddress;
    [all...]
XMPPConnection.java 29 import org.jivesoftware.smack.util.dns.HostAddress;
563 Iterator<HostAddress> it = config.getHostAddresses().iterator();
564 List<HostAddress> failedAddresses = new LinkedList<HostAddress>();
568 HostAddress hostAddress = it.next();
569 String host = hostAddress.getFQDN();
570 int port = hostAddress.getPort();
590 config.setUsedHostAddress(hostAddress);
593 hostAddress.setException(exception)
    [all...]
  /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/18/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 342 milliseconds