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

/libcore/ojluni/src/main/java/java/net/
H A DAbstractPlainDatagramSocketImpl.java194 * @param inetaddr multicast address to join.
196 protected void join(InetAddress inetaddr) throws IOException { argument
197 join(inetaddr, null);
202 * @param inetaddr multicast address to leave.
204 protected void leave(InetAddress inetaddr) throws IOException { argument
205 leave(inetaddr, null);
224 protected abstract void join(InetAddress inetaddr, NetworkInterface netIf) argument
242 protected abstract void leave(InetAddress inetaddr, NetworkInterface netIf) argument
H A DDatagramSocketImpl.java204 * @param inetaddr multicast address to join.
208 protected abstract void join(InetAddress inetaddr) throws IOException; argument
212 * @param inetaddr multicast address to leave.
216 protected abstract void leave(InetAddress inetaddr) throws IOException; argument
H A DInet6AddressImpl.java186 InetAddress inetaddr = null;
188 inetaddr = it.nextElement();
189 if (inetaddr.getClass().isInstance(addr)) {
190 sourceAddr = inetaddr;
H A DPlainDatagramSocketImpl.java179 protected void join(InetAddress inetaddr, NetworkInterface netIf) throws IOException { argument
184 IoBridge.setSocketOption(fd, JAVA_MCAST_JOIN_GROUP, makeGroupReq(inetaddr, netIf));
187 protected void leave(InetAddress inetaddr, NetworkInterface netIf) argument
193 IoBridge.setSocketOption(fd, JAVA_MCAST_LEAVE_GROUP, makeGroupReq(inetaddr, netIf));
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DDatagramSocketAdaptor.java400 protected void join(InetAddress inetaddr) throws IOException {}
402 protected void leave(InetAddress inetaddr) throws IOException {}

Completed in 173 milliseconds