Home | History | Annotate | Download | only in net

Lines Matching refs:inetAddress

19 import java.net.InetAddress;
59 InetAddress ia = InetAddress.getByName(validIPAddresses[i]);
65 InetSocketAddress isa = new InetSocketAddress((InetAddress)null, 80);
69 new InetSocketAddress(InetAddress.getByName("localhost"), 65536);
75 new InetSocketAddress(InetAddress.getByName("localhost"), -1);
106 InetAddress localhost = InetAddress.getByName("localhost");
121 InetAddress ia = InetAddress.getByName(validIPAddresses[i]);
125 InetSocketAddress isa = new InetSocketAddress((InetAddress) null, 0);
130 InetAddress localhost = InetAddress.getByName("localhost");
155 InetAddress.getByAddress("some host", new byte[] { 127, 0, 0, 1 }),
169 InetAddress address = InetAddress.getByAddress(new byte[] { 127, 0, 0, 1 });
176 InetAddress inetAddress = InetAddress.getByAddress(new byte[] { 127, 0, 0, 1 });
177 InetSocketAddress socketAddress = new InetSocketAddress(inetAddress, 1234);
182 inetAddress = InetAddress.getByName("127.0.0.1");
183 socketAddress = new InetSocketAddress(inetAddress, 1234);