Searched refs:nifs (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/test/java/net/NetworkInterface/
H A DIPv4Only.java39 Enumeration<NetworkInterface> nifs = NetworkInterface.getNetworkInterfaces();
40 while (nifs.hasMoreElements()) {
41 NetworkInterface nif = nifs.nextElement();
H A DTest.java36 Enumeration nifs = NetworkInterface.getNetworkInterfaces();
38 while (nifs.hasMoreElements()) {
39 NetworkInterface ni = (NetworkInterface)nifs.nextElement();
/openjdk7/jdk/src/macosx/classes/java/net/
H A DDefaultInterface.java64 Enumeration<NetworkInterface> nifs;
67 nifs = NetworkInterface.getNetworkInterfaces();
76 while (nifs.hasMoreElements()) {
77 NetworkInterface ni = nifs.nextElement();
/openjdk7/jdk/test/java/net/MulticastSocket/
H A DTestInterfaces.java41 Enumeration nifs = NetworkInterface.getNetworkInterfaces();
42 while (nifs.hasMoreElements()) {
43 NetworkInterface ni = (NetworkInterface)nifs.nextElement();
H A DMulticastAddresses.java47 Enumeration nifs = NetworkInterface.getNetworkInterfaces();
48 while (nifs.hasMoreElements()) {
49 NetworkInterface this_ni = (NetworkInterface)nifs.nextElement();
H A DTest.java141 Enumeration nifs = NetworkInterface.getNetworkInterfaces();
142 while (nifs.hasMoreElements()) {
143 NetworkInterface ni = (NetworkInterface)nifs.nextElement();
/openjdk7/jdk/test/com/sun/jdi/
H A DListenAddress.java93 Enumeration nifs = NetworkInterface.getNetworkInterfaces();
94 while (nifs.hasMoreElements()) {
95 NetworkInterface ni = (NetworkInterface)nifs.nextElement();
/openjdk7/jdk/test/java/net/Inet6Address/serialize/
H A DSerialize.java41 Enumeration nifs = NetworkInterface.getNetworkInterfaces();
42 while (nifs.hasMoreElements()) {
43 NetworkInterface nif = (NetworkInterface)nifs.nextElement();
/openjdk7/jdk/test/java/net/Socket/
H A DLinkLocal.java137 Enumeration nifs = NetworkInterface.getNetworkInterfaces();
138 while (nifs.hasMoreElements()) {
139 NetworkInterface ni = (NetworkInterface)nifs.nextElement();
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DNetworkConfiguration.java67 List<NetworkInterface> nifs = Collections
69 for (NetworkInterface nif: nifs) {
/openjdk7/jdk/test/java/net/BindException/
H A DTest.java180 Enumeration nifs = NetworkInterface.getNetworkInterfaces();
181 while (nifs.hasMoreElements()) {
182 NetworkInterface ni = (NetworkInterface)nifs.nextElement();
/openjdk7/jdk/test/sun/net/sdp/
H A DSanity.java36 Enumeration<NetworkInterface> nifs = NetworkInterface.getNetworkInterfaces();
37 while (nifs.hasMoreElements()) {
38 NetworkInterface ni = nifs.nextElement();
/openjdk7/jdk/test/java/net/ipv6tests/
H A DTests.java168 int nifs=0;
170 nifs++;
173 return nifs;
/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c709 static int nifs = 0; /* number of entries used in array */ variable
744 nifs ++;
745 if (nifs > localifsSize) {
749 nifs = 0;
775 for (i=0, lif=localifs; i<nifs; i++, lif++) {

Completed in 103 milliseconds