Searched defs:assocId (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSctpNotification.java35 int assocId(); method in interface:SctpNotification
H A DSctpShutdown.java37 /* assocId is used to lookup the association before the notification is
39 private int assocId; field in class:SctpShutdown
42 private SctpShutdown(int assocId) { argument
43 this.assocId = assocId;
47 public int assocId() { method in class:SctpShutdown
48 return assocId;
H A DSctpSendFailed.java39 /* assocId is used to lookup the association before the notification is
41 private int assocId; field in class:SctpSendFailed
48 private SctpSendFailed(int assocId, argument
53 this.assocId = assocId;
61 public int assocId() { method in class:SctpSendFailed
62 return assocId;
H A DSctpAssocChange.java45 /* assocId is used to lookup the association before the notification is
47 private int assocId; field in class:SctpAssocChange
53 private SctpAssocChange(int assocId, argument
78 this.assocId = assocId;
84 public int assocId() { method in class:SctpAssocChange
85 return assocId;
H A DSctpPeerAddrChange.java47 /* assocId is used to lookup the association before the notification is
49 private int assocId; field in class:SctpPeerAddrChange
54 private SctpPeerAddrChange(int assocId, SocketAddress address, int intEvent) { argument
77 this.assocId = assocId;
82 public int assocId() { method in class:SctpPeerAddrChange
83 return assocId;
H A DSctpNet.java161 static Set<SocketAddress> getRemoteAddresses(int fd, int assocId) argument
164 SocketAddress[] saa = getRemoteAddresses0(fd, assocId);
178 int assocId)
203 assocId,
208 assocId,
226 static Object getSocketOption(int fd, SctpSocketOption name, int assocId) argument
237 return getPrimAddrOption0(fd, assocId);
311 static void shutdown(int fd, int assocId) argument
313 shutdown0(fd, assocId);
316 static FileDescriptor branch(int fd, int assocId) throw argument
175 setSocketOption(int fd, SctpSocketOption name, Object value, int assocId) argument
343 getRemoteAddresses0(int fd, int assocId) argument
346 branch0(int fd, int assocId) argument
348 setPrimAddrOption0(int fd, int assocId, InetAddress ia, int port) argument
351 setPeerPrimAddrOption0(int fd, int assocId, InetAddress ia, int port, boolean preferIPv6) argument
354 getPrimAddrOption0(int fd, int assocId) argument
363 shutdown0(int fd, int assocId) argument
[all...]
H A DSctpChannelImpl.java876 (sac.assocId(), sac.maxInStreams(), sac.maxOutStreams());
1095 InetAddress addr, int port, int assocId, int streamNumber,
1094 send0(int fd, long address, int length, InetAddress addr, int port, int assocId, int streamNumber, boolean unordered, int ppid) argument
H A DSctpMultiChannelImpl.java400 int assocId = association == null ? 0 : association.associationID();
401 SctpNet.setSocketOption(fdVal, name, value, assocId);
423 int assocId = association == null ? 0 : association.associationID();
424 return (T)SctpNet.getSocketOption(fdVal, name, assocId);
601 (sac.assocId(), sac.maxInStreams(), sac.maxOutStreams());
608 associationToRemove.set(lookupAssociation(sac.assocId()));
620 notification.setAssociation(lookupAssociation(notification.assocId()));
665 private Association lookupAssociation(int assocId) { argument
670 if (a.associationID() == assocId) {
680 int assocId
836 send(int fd, ByteBuffer src, int assocId, SocketAddress target, MessageInfo messageInfo) argument
875 sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int assocId, int streamNumber, boolean unordered, int ppid) argument
974 send0(int fd, long address, int length, InetAddress addr, int port, int assocId, int streamNumber, boolean unordered, int ppid) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSctpMessageInfoImpl.java39 private int assocId; field in class:SctpMessageInfoImpl
56 private SctpMessageInfoImpl(int assocId, argument
63 this.assocId = assocId;
86 return assocId;
162 .append(", Assoc ID: ").append(assocId)
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DSctpChannelImpl.c52 int assocId; member in struct:controlData
148 cdata->assocId = sri->sinfo_assoc_id;
177 if (cdata->assocId > 0) {
178 sri->sinfo_assoc_id = cdata->assocId;
398 resultObj = (*env)->NewObject(env, smi_class, smi_ctrID, cdata->assocId,
505 jobject targetAddress, jint targetPort, jint assocId, jint streamNumber,
519 * assocId will always be -1
521 * Setup new association, targetAddress will contain address, assocId = -1
522 * Association already existing, assocId != -1, targetAddress = preferred addr
524 if (targetAddress != NULL /*&& assocId <
503 Java_sun_nio_ch_SctpChannelImpl_send0(JNIEnv *env, jclass klass, jint fd, jlong address, jint length, jobject targetAddress, jint targetPort, jint assocId, jint streamNumber, jboolean unordered, jint ppid) argument
[all...]
H A DSctpNet.c456 (JNIEnv *env, jclass klass, jint fd, jint assocId) {
457 return getRemoteAddresses(env, fd, assocId);
574 (JNIEnv *env, jclass klass, jint fd, jint assocId) {
579 prim.ssp_assoc_id = assocId;
596 (JNIEnv *env, jclass klass, jint fd, jint assocId, jobject iaObj, jint port) {
606 prim.ssp_assoc_id = assocId;
620 (JNIEnv *env, jclass klass, jint fd, jint assocId,
631 prim.sspp_assoc_id = assocId;
690 (JNIEnv *env, jclass klass, jint fd, jint assocId) {
700 if (assocId <
455 Java_sun_nio_ch_SctpNet_getRemoteAddresses0(JNIEnv *env, jclass klass, jint fd, jint assocId) argument
573 Java_sun_nio_ch_SctpNet_getPrimAddrOption0(JNIEnv *env, jclass klass, jint fd, jint assocId) argument
595 Java_sun_nio_ch_SctpNet_setPrimAddrOption0(JNIEnv *env, jclass klass, jint fd, jint assocId, jobject iaObj, jint port) argument
619 Java_sun_nio_ch_SctpNet_setPeerPrimAddrOption0(JNIEnv *env, jclass klass, jint fd, jint assocId, jobject iaObj, jint port, jboolean preferIPv6) argument
689 Java_sun_nio_ch_SctpNet_shutdown0(JNIEnv *env, jclass klass, jint fd, jint assocId) argument
745 Java_sun_nio_ch_SctpNet_branch0(JNIEnv *env, jclass klass, jint fd, jint assocId) argument
[all...]

Completed in 75 milliseconds