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

/frameworks/base/core/java/android/net/
H A DDhcpInfo.java27 public int ipAddress; field in class:DhcpInfo
44 ipAddress = source.ipAddress;
57 str.append("ipaddr "); putAddress(str, ipAddress);
79 dest.writeInt(ipAddress);
93 info.ipAddress = in.readInt();
H A DDhcpInfoInternal.java35 public String ipAddress; field in class:DhcpInfoInternal
77 info.ipAddress = convertToInt(ipAddress);
85 InetAddress inetAddress = NetworkUtils.numericToInetAddress(ipAddress);
96 if (TextUtils.isEmpty(ipAddress)) {
97 Log.e(TAG, "makeLinkAddress with empty ipAddress");
100 return new LinkAddress(NetworkUtils.numericToInetAddress(ipAddress), prefixLength);
160 return "addr: " + ipAddress + "/" + prefixLength +

Completed in 30 milliseconds