HomeSort by relevance Sort by last modified time
    Searched refs:mcastaddr (Results 1 - 7 of 7) sorted by null

  /libcore/ojluni/src/main/java/java/net/
MulticastSocket.java 286 * with the {@code mcastaddr} argument
289 * @param mcastaddr is the multicast address to join
298 public void joinGroup(InetAddress mcastaddr) throws IOException {
303 checkAddress(mcastaddr, "joinGroup");
306 security.checkMulticast(mcastaddr);
309 if (!mcastaddr.isMulticastAddress()) {
323 getImpl().join(mcastaddr);
332 * with the {@code mcastaddr} argument
335 * @param mcastaddr is the multicast address to leave
343 public void leaveGroup(InetAddress mcastaddr) throws IOException
    [all...]
AbstractPlainDatagramSocketImpl.java 209 * @param mcastaddr multicast address to join.
212 * @throws IllegalArgumentException if mcastaddr is null or is a
217 protected void joinGroup(SocketAddress mcastaddr, NetworkInterface netIf)
219 if (mcastaddr == null || !(mcastaddr instanceof InetSocketAddress))
221 join(((InetSocketAddress)mcastaddr).getAddress(), netIf);
229 * @param mcastaddr multicast address to leave.
231 * @throws IllegalArgumentException if mcastaddr is null or is a
235 protected void leaveGroup(SocketAddress mcastaddr, NetworkInterface netIf)
237 if (mcastaddr == null || !(mcastaddr instanceof InetSocketAddress)
    [all...]
DatagramSocketImpl.java 220 * @param mcastaddr address to join.
227 protected abstract void joinGroup(SocketAddress mcastaddr,
233 * @param mcastaddr address to leave.
239 protected abstract void leaveGroup(SocketAddress mcastaddr,
  /external/syslinux/core/lwip/src/netif/
etharp.c 839 struct eth_addr *dest, mcastaddr; local
862 mcastaddr.addr[0] = 0x01;
863 mcastaddr.addr[1] = 0x00;
864 mcastaddr.addr[2] = 0x5e;
865 mcastaddr.addr[3] = ip4_addr2(ipaddr) & 0x7f;
866 mcastaddr.addr[4] = ip4_addr3(ipaddr);
867 mcastaddr.addr[5] = ip4_addr4(ipaddr);
869 dest = &mcastaddr;
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
DatagramSocketAdaptor.java 404 protected void joinGroup(SocketAddress mcastaddr,
407 protected void leaveGroup(SocketAddress mcastaddr,
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/current/
core.jar 

Completed in 216 milliseconds