Searched refs:SctpChannel (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/
H A DSctpChannel.java137 public abstract class SctpChannel class in inherits:AbstractSelectableChannel
146 protected SctpChannel(SelectorProvider provider) { method in class:SctpChannel
163 public static SctpChannel open() throws
218 public static SctpChannel open(SocketAddress remote, int maxOutStreams,
220 SctpChannel ssc = SctpChannel.open();
279 public abstract SctpChannel bind(SocketAddress local)
326 public abstract SctpChannel bindAddress(InetAddress address)
375 public abstract SctpChannel unbindAddress(InetAddress address)
634 public abstract SctpChannel shutdow
[all...]
H A DSctpServerChannel.java147 public abstract SctpChannel accept() throws IOException;
H A DSctpMultiChannel.java708 * into a separate channel. The new bound and connected {@link SctpChannel}
721 * @return The {@code SctpChannel}
729 public abstract SctpChannel branch(Association association)
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSctpChannelImpl.java36 import com.sun.nio.sctp.SctpChannel;
42 public class SctpChannelImpl extends SctpChannel
57 public SctpChannel bind(SocketAddress local)
63 public SctpChannel bindAddress(InetAddress address)
69 public SctpChannel unbindAddress(InetAddress address)
108 public SctpChannel shutdown() throws IOException {
119 public <T> SctpChannel setOption(SctpSocketOption<T> name, T value)
H A DSctpServerChannelImpl.java32 import com.sun.nio.sctp.SctpChannel;
49 public SctpChannel accept() throws IOException {
H A DSctpMultiChannelImpl.java34 import com.sun.nio.sctp.SctpChannel;
123 public SctpChannel branch(Association association)
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DBind.java46 import com.sun.nio.sctp.SctpChannel;
77 SctpChannel channel = null;
79 channel = SctpChannel.open();
103 channel = SctpChannel.open();
112 channel = SctpChannel.open();
122 channel = SctpChannel.open();
147 SctpChannel channel = null;
148 SctpChannel peerChannel = null;
152 channel = SctpChannel.open();
270 boolean boundAddress(SctpChannel channe
[all...]
H A DUtil.java40 import com.sun.nio.sctp.SctpChannel;
61 SctpChannel c = SctpChannel.open();
99 static void dumpAddresses(SctpChannel channel,
H A DConnect.java41 import com.sun.nio.sctp.SctpChannel;
63 SctpChannel channel = null;
74 channel = SctpChannel.open();
136 channel = SctpChannel.open();
161 final SctpChannel closedChannel = channel;
179 channel = SctpChannel.open();
191 final SctpChannel cceChannel = channel;
199 channel = SctpChannel.open();
H A DSocketOptionTests.java38 import com.sun.nio.sctp.SctpChannel;
50 <T> void checkOption(SctpChannel sc, SctpSocketOption<T> name,
57 <T> void optionalSupport(SctpChannel sc, SctpSocketOption<T> name,
76 SctpChannel sc = SctpChannel.open();
149 SctpChannel sc = SctpChannel.open();
159 SctpChannel peerChannel = ssc.accept();
H A DCommUp.java26 * @summary Newly connected/accepted SctpChannel should fire OP_READ if registered with a Selector
44 import com.sun.nio.sctp.SctpChannel;
98 SctpChannel sc = null;
101 sc = SctpChannel.open();
122 SctpChannel readyChannel =
123 (SctpChannel)sk.channel();
233 SctpChannel sc = null;
253 SctpChannel readyChannel =
254 (SctpChannel)sk.channel();
H A DShutdown.java40 import com.sun.nio.sctp.SctpChannel;
85 SctpChannel channel = null;
90 channel = SctpChannel.open();
202 SctpChannel sc = null;
H A DReceive.java45 import com.sun.nio.sctp.SctpChannel;
96 SctpChannel channel = null;
101 channel = SctpChannel.open();
193 channel = SctpChannel.open(peerAddress, 0, 0);
242 SctpChannel sc = ssc.accept();
285 SctpChannel channel;
288 public ReceiveNotificationHandler(SctpChannel channel) {
H A DSend.java46 import com.sun.nio.sctp.SctpChannel;
94 SctpChannel channel = null;
99 channel = SctpChannel.open();
210 channel = SctpChannel.open(peerAddress, 0, 0);
311 SctpChannel sc1 = null, sc2 = null;
/openjdk7/jdk/test/com/sun/nio/sctp/SctpMultiChannel/
H A DUtil.java40 import com.sun.nio.sctp.SctpChannel;
61 SctpChannel c = SctpChannel.open();
99 static void dumpAddresses(SctpChannel channel,
H A DBranch.java45 import com.sun.nio.sctp.SctpChannel;
125 SctpChannel bchannel = channel.branch(bassoc);
H A DSocketOptionTests.java45 import com.sun.nio.sctp.SctpChannel;
190 SctpChannel peerChannel = ssc.accept();
/openjdk7/jdk/test/com/sun/nio/sctp/SctpServerChannel/
H A DUtil.java40 import com.sun.nio.sctp.SctpChannel;
61 SctpChannel c = SctpChannel.open();
99 static void dumpAddresses(SctpChannel channel,
H A DNonBlockingAccept.java40 import com.sun.nio.sctp.SctpChannel;
85 Set<SctpChannel> channels = new HashSet<SctpChannel>(NUM_TEST_CONNECTIONS);
90 channels.add(SctpChannel.open(peerAddress, 0, 0));
97 for(SctpChannel sc: channels)
163 SctpChannel acceptsc = nextReady.accept();
188 void checkAcceptedChannel(SctpChannel sc) {
190 debug("Checking accepted SctpChannel");
H A DAccept.java39 import com.sun.nio.sctp.SctpChannel;
84 SctpChannel channel = null;
87 channel = SctpChannel.open(peerAddress, 0, 0);
145 SctpChannel sc = ssc.accept();
174 SctpChannel sc = null;
230 void checkAcceptedChannel(SctpChannel sc) {
232 debug("Checking accepted SctpChannel");
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSctpServerChannelImpl.java40 import com.sun.nio.sctp.SctpChannel;
207 public SctpChannel accept() throws IOException {
213 SctpChannel sc = null;
H A DSctpChannelImpl.java54 import com.sun.nio.sctp.SctpChannel;
65 * An implementation of an SctpChannel
67 public class SctpChannelImpl extends SctpChannel
174 public SctpChannel bind(SocketAddress local) throws IOException {
196 public SctpChannel bindAddress(InetAddress address)
204 public SctpChannel unbindAddress(InetAddress address)
211 private SctpChannel bindUnbindAddress(InetAddress address, boolean add)
669 public <T> SctpChannel setOption(SctpSocketOption<T> name, T value)
1043 public SctpChannel shutdown() throws IOException {
H A DSctpMultiChannelImpl.java53 import com.sun.nio.sctp.SctpChannel;
947 public SctpChannel branch(Association association)
/openjdk7/jdk/make/com/sun/nio/sctp/
H A DFILES_java.gmk37 com/sun/nio/sctp/SctpChannel.java \

Completed in 69 milliseconds