Searched defs:maxInStreams (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/
H A DAssociation.java56 private final int maxInStreams; field in class:Association
63 int maxInStreams,
66 this.maxInStreams = maxInStreams;
89 return maxInStreams;
62 Association(int associationID, int maxInStreams, int maxOutStreams) argument
H A DSctpStandardSocketOptions.java319 private int maxInStreams; field in class:SctpStandardSocketOptions.InitMaxStreams
322 private InitMaxStreams(int maxInStreams, int maxOutStreams) { argument
323 this.maxInStreams = maxInStreams;
330 * @param maxInStreams
332 * {@code 0 <= maxInStreams <= 65536}
344 (int maxInStreams, int maxOutStreams) {
348 if (maxInStreams < 0 || maxInStreams > 65535)
350 "Invalid maxInStreams valu
343 create(int maxInStreams, int maxOutStreams) argument
360 public int maxInStreams() { method in class:SctpStandardSocketOptions.InitMaxStreams
[all...]
H A DSctpChannel.java174 * open().connect(remote, maxOutStreams, maxInStreams);
185 * @param maxInStreams
219 int maxInStreams) throws IOException {
221 ssc.connect(remote, maxOutStreams, maxInStreams);
452 * setOption(SctpStandardSocketOptions.SCTP_INIT_MAXSTREAMS, SctpStandardSocketOption.InitMaxStreams.create(maxInStreams, maxOutStreams))
456 * <P> The {@code maxOutStreams} and {@code maxInStreams} parameters
468 * @param maxInStreams
511 int maxInStreams)
218 open(SocketAddress remote, int maxOutStreams, int maxInStreams) argument
509 connect(SocketAddress remote, int maxOutStreams, int maxInStreams) argument
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSctpAssociationImpl.java34 int maxInStreams,
36 super(associationID, maxInStreams, maxOutStreams);
33 SctpAssociationImpl(int associationID, int maxInStreams, int maxOutStreams) argument
H A DSctpAssocChange.java50 private int maxInStreams; field in class:SctpAssocChange
56 int maxInStreams) {
80 this.maxInStreams = maxInStreams;
108 int maxInStreams() { method in class:SctpAssocChange
109 return maxInStreams;
53 SctpAssocChange(int assocId, int intEvent, int maxOutStreams, int maxInStreams) argument
H A DSctpChannelImpl.java431 int maxInStreams)
435 create(maxInStreams, maxOutStreams)).connect(endpoint);
876 (sac.assocId(), sac.maxInStreams(), sac.maxOutStreams());
429 connect(SocketAddress endpoint, int maxOutStreams, int maxInStreams) argument
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSctpChannelImpl.java81 int maxInStreams) throws IOException {
80 connect(SocketAddress remote, int maxOutStreams, int maxInStreams) argument
/openjdk7/jdk/test/com/sun/nio/sctp/
H A DMessageInfoTests.java123 TestAssociation(int assocID, int maxInStreams, int maxOutStreams) { argument
124 super(assocID, maxInStreams, maxOutStreams);
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DSend.java150 streamNumber = handler.maxInStreams;
402 int maxInStreams; field in class:Send.SendNotificationHandler
409 public int maxInStreams() { method in class:Send.SendNotificationHandler
410 return maxInStreams;
436 this.maxInStreams = association.maxInboundStreams();

Completed in 1412 milliseconds