Searched refs:Inet4Address (Results 1 - 25 of 31) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/net/
H A DInet4AddressImpl.java42 anyLocalAddress = new Inet4Address(); // {0x00,0x00,0x00,0x00}
51 loopbackAddress = new Inet4Address("localhost", loopback);
64 while (!(inetaddr instanceof Inet4Address) &&
67 if (inetaddr instanceof Inet4Address)
H A DInet4Address.java88 class Inet4Address extends InetAddress { class in inherits:InetAddress
91 /** use serialVersionUID from InetAddress, but Inet4Address instance
103 Inet4Address() { method in class:Inet4Address
110 Inet4Address(String hostName, byte addr[]) { method in class:Inet4Address
123 Inet4Address(String hostName, int address) { method in class:Inet4Address
358 return (obj != null) && (obj instanceof Inet4Address) &&
H A DInterfaceAddress.java39 private Inet4Address broadcast = null;
H A DNetworkInterface.java315 if (!(addr instanceof Inet4Address || addr instanceof Inet6Address)) {
447 if (addr instanceof Inet4Address) {
448 return getMacAddr0(((Inet4Address)addr).getAddress(), name, index);
H A DInetAddress.java114 * HREF="Inet4Address.html#format">Inet4Address#format</A>; For IPv6
278 * Replaces the de-serialized object with an Inet4Address object.
287 return new Inet4Address(holder().getHostName(), holder().getAddress());
974 * <p> If addr specifies an IPv4 address an instance of Inet4Address
995 if (addr.length == Inet4Address.INADDRSZ) {
996 return new Inet4Address(host, addr);
1001 return new Inet4Address(host, newAddr);
1140 if (addr.length == Inet4Address.INADDRSZ) {
1141 ret[0] = new Inet4Address(nul
[all...]
/openjdk7/jdk/test/java/net/InetAddress/
H A DB5087907.java51 if (addr instanceof Inet4Address) {
77 if (!(lh instanceof Inet4Address)) failed = true;
/openjdk7/jdk/test/java/net/InterfaceAddress/
H A DNetworkPrefixLength.java30 import java.net.Inet4Address;
60 if (addr instanceof Inet4Address)
/openjdk7/jdk/test/com/sun/jdi/
H A DListenAddress.java31 import java.net.Inet4Address;
101 if (!(addr instanceof Inet4Address)) {
/openjdk7/jdk/make/java/net/
H A DFILES_c.gmk29 Inet4Address.c \
H A DMakefile54 java/net/Inet4Address.java \
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DUtil.java28 import java.net.Inet4Address;
90 (ipv4Only ? (addr instanceof Inet4Address) : true)) {
/openjdk7/jdk/test/com/sun/nio/sctp/SctpMultiChannel/
H A DUtil.java28 import java.net.Inet4Address;
90 (ipv4Only ? (addr instanceof Inet4Address) : true)) {
/openjdk7/jdk/test/com/sun/nio/sctp/SctpServerChannel/
H A DUtil.java28 import java.net.Inet4Address;
90 (ipv4Only ? (addr instanceof Inet4Address) : true)) {
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DNet.java129 if (!(addr instanceof Inet4Address || addr instanceof Inet6Address))
248 static Inet4Address anyInet4Address(final NetworkInterface interf) {
249 return AccessController.doPrivileged(new PrivilegedAction<Inet4Address>() {
250 public Inet4Address run() {
254 if (addr instanceof Inet4Address) {
255 return (Inet4Address)addr;
267 if (ia instanceof Inet4Address) {
304 if (ia instanceof Inet4Address) {
/openjdk7/jdk/test/java/net/DatagramSocket/
H A DB6411513.java49 if (addr instanceof Inet4Address) {
/openjdk7/jdk/src/solaris/classes/sun/net/sdp/
H A DSdpProvider.java30 import java.net.Inet4Address;
250 (address instanceof Inet4Address) ? 32 : 128;
261 if (address instanceof Inet4Address) {
306 String addr = (address instanceof Inet4Address) ?
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DNetworkConfiguration.java77 if (addr instanceof Inet4Address) {
H A DBasicMulticastTests.java51 ProtocolFamily family = (group instanceof Inet4Address) ?
/openjdk7/jdk/test/java/net/ipv6tests/
H A DTests.java180 return new AddrEnum (Inet4Address.class);
183 public static Inet4Address getFirstLocalIPv4Address () {
188 return (Inet4Address)e.nextElement();
H A DTcpTest.java41 static Inet4Address ia4addr;
91 t_assert ((s2peer instanceof Inet4Address));
H A DUdpTest.java42 static Inet4Address ia4addr;
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DHostAddress.java38 import java.net.Inet4Address;
150 if (inetAddress instanceof Inet4Address)
H A DHostAddresses.java41 import java.net.Inet4Address;
309 if (inetAddresses[i] instanceof Inet4Address)
/openjdk7/jdk/test/java/net/BindException/
H A DTest.java192 if ((ia instanceof Inet4Address) && (ia4_this == null)) {
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DInitialToken.java32 import java.net.Inet4Address;
346 if (addr instanceof Inet4Address)

Completed in 94 milliseconds

12