HomeSort by relevance Sort by last modified time
    Searched defs:netifs (Results 1 - 3 of 3) sorted by null

  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
UnixNetworkInterfaceTest.java 29 private Enumeration<NetworkInterface> netifs = null; field in class:UnixNetworkInterfaceTest
38 while (netifs.hasMoreElements()) {
39 NetworkInterface netif = netifs.nextElement();
63 while (netifs.hasMoreElements()) {
64 NetworkInterface netif = netifs.nextElement();
90 while (netifs.hasMoreElements()) {
91 NetworkInterface netif = netifs.nextElement();
121 while (netifs.hasMoreElements()) {
122 NetworkInterface netif = netifs.nextElement();
145 while (netifs.hasMoreElements())
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InterfaceAddressTest.java 126 Enumeration<NetworkInterface> netifs = NetworkInterface local
129 if (netifs != null) {
130 while (netifs.hasMoreElements()) {
131 theInterface = netifs.nextElement();
  /libcore/ojluni/src/main/java/java/net/
NetworkInterface.java 333 final NetworkInterface[] netifs = getAll(); local
336 if (netifs == null)
342 if (netifs != null && i < netifs.length) {
343 NetworkInterface netif = netifs[i++];
351 return (netifs != null && i < netifs.length);

Completed in 349 milliseconds