Lines Matching defs:group

58     // We use the "good" addresses for our actual group, and the "bad" addresses are for
59 // a group that we won't actually set up.
228 private void check_joinAnySource(InetAddress group, InetAddress group2,
233 // Set up a receiver join the group on ipv4NetworkInterface
236 receiverChannel.join(group, networkInterface);
239 sendMulticastMessage(group, localAddress.getPort(), msg, networkInterface);
339 // start server which is joined to the group and has
344 InetAddress group = null;
348 group = GOOD_MULTICAST_IPv4;
352 group = GOOD_MULTICAST_IPv6;
359 dc.join(group, thisInterface);
364 sendMulticastMessage(group, localAddress.getPort(), msg, sendingInterface);
409 private void check_joinAnySource_multiple_joins(InetAddress group,
416 MembershipKey membershipKey1 = dc.join(group, networkInterface);
418 MembershipKey membershipKey2 = dc.join(group, loopbackInterface);
421 MembershipKey membershipKey1_2 = dc.join(group, networkInterface);
435 private void check_joinAnySource_multicastLoopOption(InetAddress group,
446 dc.join(group, networkInterface);
453 dc.send(sendBuffer, new InetSocketAddress(group, localAddress.getPort()));
469 dc.send(sendBuffer2, new InetSocketAddress(group, localAddress.getPort()));
485 private void checkMembershipKeyAccessors(InetAddress group,
492 MembershipKey key = dc.join(group, networkInterface);
494 assertSame(group, key.group());
509 private void check_dropAnySource_twice(InetAddress group,
515 MembershipKey membershipKey = dc.join(group, networkInterface);
521 // Try to leave a group we are no longer a member of - should do nothing.
713 /** Checks that block() works when the receiver is bound to the multicast group address */
726 /** Checks that block() works when the receiver is bound to the multicast group address */
982 * Checks that a source-specific join() works when the receiver is bound to the multicast group
999 * Checks that a source-specific join() works when the receiver is bound to the multicast group
1016 * Checks that a source-specific join() works when the receiver is bound to the multicast group
1065 * @param groupAddress the group address to join
1067 * @param networkInterface The network interface on which to join the multicast group
1139 // Try to leave a group we are no longer a member of - should do nothing.
1204 assertSame(GOOD_MULTICAST_IPv4, membershipKey.group());
1229 InetAddress group, int port, String msg, NetworkInterface sendingInterface)
1231 // Any datagram socket can send to a group. It does not need to have joined the group.
1235 // group, but can be loopback for an IPv4 group.
1238 sendMessage(dc, msg, new InetSocketAddress(group, port));