Searched refs:assoc (Results 1 - 10 of 10) sorted by relevance

/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DDOMOutput.java43 private final AssociationMap assoc; field in class:DOMOutput
45 public DOMOutput(Node node, AssociationMap assoc) { argument
47 this.assoc = assoc;
48 assert assoc!=null;
61 assoc.addOuter( getBuilder().getCurrentElement(), op );
65 assoc.addInner( getBuilder().getCurrentElement(), ip );
/openjdk10/jdk/test/javax/management/relation/
H A DRelationTypeTest.java83 Map assoc =
96 if (assoc.size() != 1) {
98 "return one association: " + assoc);
102 ArrayList list = (ArrayList) assoc.get(timer2);
/openjdk10/jdk/test/com/sun/nio/sctp/
H A DMessageInfoTests.java40 static final Association assoc = new TestAssociation(1, 1, 1); field in class:MessageInfoTests
50 info = MessageInfo.createOutgoing(assoc, addr, DEFAULT_STREAM_NUMBER);
52 check(info.association().equals(assoc), "incorrect association");
59 info = MessageInfo.createOutgoing(assoc, null, 0);
70 public void run() { MessageInfo.createOutgoing(assoc, addr, -1); } });
72 public void run() { MessageInfo.createOutgoing(assoc, addr, 65537);}});
74 final MessageInfo iaeInfo = MessageInfo.createOutgoing(assoc, addr, 0);
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/
H A DBinderImpl.java81 private final AssociationMap<XmlNode> assoc = new AssociationMap<XmlNode>(); field in class:BinderImpl
90 unmarshaller = new UnmarshallerImpl(context,assoc);
96 marshaller = new MarshallerImpl(context,assoc);
108 return new DOMOutput((Node)xmlNode,assoc);
157 AssociationMap.Entry<XmlNode> e = assoc.byPeer(jaxbObject);
165 AssociationMap.Entry e = assoc.byElement(xmlNode);
H A DMarshallerImpl.java137 * @param assoc
140 public MarshallerImpl( JAXBContextImpl c, AssociationMap assoc ) {
/openjdk10/jdk/test/com/sun/nio/sctp/SctpMultiChannel/
H A DSend.java128 Association assoc = it.next();
129 streamNumber = assoc.maxOutboundStreams() - 1;
132 info = MessageInfo.createOutgoing(assoc, null, streamNumber);
161 streamNumber = assoc.maxOutboundStreams() + 1;
162 info = MessageInfo.createOutgoing(assoc, null, streamNumber);
186 channel.getRemoteAddresses(assoc);
191 info = MessageInfo.createOutgoing(assoc, null, 0);
274 Association assoc = it.next();
294 check(info.streamNumber() == assoc.maxInboundStreams() - 1,
H A DSocketOptionTests.java188 Association assoc = associations.iterator().next();
205 //smc.setOption(SCTP_PRIMARY_ADDR, addrToSet, assoc);
208 SocketAddress primaryAddr = smc.getOption(SCTP_PRIMARY_ADDR, assoc);
223 smc.setOption(SCTP_PRIMARY_ADDR, addrToSet, assoc);
225 primaryAddr = smc.getOption(SCTP_PRIMARY_ADDR, assoc);
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DUnmarshallingContext.java146 private final AssociationMap assoc; field in class:UnmarshallingContext
153 * This flag is unused when {@link #assoc}==null.
410 * @param assoc
414 public UnmarshallingContext( UnmarshallerImpl _parent, AssociationMap assoc) { argument
416 this.assoc = assoc;
552 if( assoc!=null )
1205 if(assoc!=null)
1206 assoc.addInner(currentElement,innerPeer);
1217 if(assoc!
[all...]
H A DUnmarshallerImpl.java107 public UnmarshallerImpl( JAXBContextImpl context, AssociationMap assoc ) {
109 this.coordinator = new UnmarshallingContext( this, assoc );
/openjdk10/jdk/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/
H A DSctpMultiChannelImpl.java662 Association assoc = associationToRemove.get();
663 if (assoc != null) {
664 removeAssociation(assoc);
762 private void checkStreamNumber(Association assoc, int streamNumber) { argument
764 if (streamNumber < 0 || streamNumber >= assoc.maxOutboundStreams())
800 Association assoc = messageInfo.association();
802 if (assoc != null) {
803 checkAssociation(assoc);
804 checkStreamNumber(assoc, messageInfo.streamNumber());
805 assocId = assoc
[all...]

Completed in 74 milliseconds