Home | History | Annotate | Download | only in core

Lines Matching refs:inetAddress

60      * at the end of IPv6 addresses generated by InetAddress.getHostAddress().
81 private InetAddress inetAddress;
174 if (inetAddress == null)
175 inetAddress = InetAddress.getByName(hostname);
176 rawIpAddress = inetAddress.getHostAddress();
208 //set inetAddress to null so that it would be reinited
210 inetAddress = null;
267 public InetAddress getInetAddress() throws java.net.UnknownHostException {
270 if (inetAddress != null)
271 return inetAddress;
272 inetAddress = InetAddress.getByName(hostname);
273 return inetAddress;