Searched refs:ip4Interfaces (Results 1 - 5 of 5) sorted by relevance

/openjdk9/jdk/test/java/nio/channels/DatagramChannel/
H A DNetworkConfiguration.java34 private Map<NetworkInterface,List<InetAddress>> ip4Interfaces; field in class:NetworkConfiguration
37 private NetworkConfiguration(Map<NetworkInterface,List<InetAddress>> ip4Interfaces, argument
40 this.ip4Interfaces = ip4Interfaces;
44 Iterable<NetworkInterface> ip4Interfaces() { method in class:NetworkConfiguration
45 return ip4Interfaces.keySet();
53 return ip4Interfaces.get(nif);
64 Map<NetworkInterface,List<InetAddress>> ip4Interfaces =
82 List<InetAddress> list = ip4Interfaces.get(nif);
87 ip4Interfaces
[all...]
H A DBasicMulticastTests.java207 NetworkInterface nif = config.ip4Interfaces().iterator().next();
H A DMulticastSendReceiveTests.java242 for (NetworkInterface nif: config.ip4Interfaces()) {
H A DPromiscuous.java211 for (NetworkInterface nif: config.ip4Interfaces()) {
/openjdk9/jdk/test/lib/testlibrary/jdk/testlibrary/
H A DNetworkConfiguration.java55 private Map<NetworkInterface,List<Inet4Address>> ip4Interfaces; field in class:NetworkConfiguration
58 private NetworkConfiguration(Map<NetworkInterface,List<Inet4Address>> ip4Interfaces, argument
61 this.ip4Interfaces = ip4Interfaces;
69 return Stream.concat(ip4Interfaces(), ip6Interfaces())
76 public Stream<NetworkInterface> ip4Interfaces() { method in class:NetworkConfiguration
77 return ip4Interfaces.keySet().stream()
101 Optional<?> addr = ip4Interfaces.get(nif).stream()
121 return ip4Interfaces().filter(supportsIp4Multicast);
136 Optional<?> addr = ip4Interfaces
[all...]

Completed in 103 milliseconds