Searched refs:ByteBufferWithInfo (Results 1 - 25 of 25) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferQueue.java39 public void enqueue(ByteBufferWithInfo item)
44 public ByteBufferWithInfo dequeue() throws NoSuchElementException
46 return (ByteBufferWithInfo)list.removeFirst();
54 // Adds the given ByteBufferWithInfo to the front
56 public void push(ByteBufferWithInfo item)
H A DBufferManagerRead.java29 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
73 public ByteBufferWithInfo underflow (ByteBufferWithInfo bbwi);
94 public void close(ByteBufferWithInfo bbwi);
H A DMarkAndResetHandler.java36 void fragmentationOccured(ByteBufferWithInfo newFragment);
H A DBufferManagerReadGrow.java61 public ByteBufferWithInfo underflow (ByteBufferWithInfo bbwi)
85 public void fragmentationOccured(ByteBufferWithInfo newFragment) {}
98 public void close(ByteBufferWithInfo bbwi) {}
H A DBufferManagerWrite.java32 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
87 * return new ByteBufferWithInfo(bbwi.length);
100 public abstract void overflow (ByteBufferWithInfo bbwi);
H A DBufferManagerWriteCollect.java36 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
78 public void overflow (ByteBufferWithInfo bbwi)
87 ByteBufferWithInfo newBbwi = new ByteBufferWithInfo(orb, this);
128 // Get a reference to ByteBufferPool so that the ByteBufferWithInfo
134 ByteBufferWithInfo bbwi = (ByteBufferWithInfo)bufs.next();
141 // Release ByteBufferWithInfo's ByteBuffer back to the pool
169 * For a BufferManagerWriteGrow any queued ByteBufferWithInfo must
174 // iterate thru queue and release any ByteBufferWithInfo'
[all...]
H A DBufferManagerReadStream.java75 ByteBufferWithInfo bbwi =
76 new ByteBufferWithInfo(orb, byteBuffer, msg.getHeaderLength());
95 public ByteBufferWithInfo underflow (ByteBufferWithInfo bbwi)
98 ByteBufferWithInfo result = null;
179 // Release any queued ByteBufferWithInfo's byteBuffers to the
181 public void close(ByteBufferWithInfo bbwi)
202 ByteBufferWithInfo abbwi = null;
246 ByteBufferWithInfo abbwi = null;
251 abbwi = (ByteBufferWithInfo)it
[all...]
H A DBufferManagerWriteGrow.java29 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
54 public void overflow (ByteBufferWithInfo bbwi)
57 // has been moved ByteBufferWithInfo.growBuffer().
59 // Grow ByteBufferWithInfo to a larger size.
H A DByteBufferWithInfo.java47 public class ByteBufferWithInfo class
59 public ByteBufferWithInfo(org.omg.CORBA.ORB orb, method in class:ByteBufferWithInfo
75 public ByteBufferWithInfo(org.omg.CORBA.ORB orb, ByteBuffer byteBuffer) method in class:ByteBufferWithInfo
80 public ByteBufferWithInfo(org.omg.CORBA.ORB orb, method in class:ByteBufferWithInfo
91 public ByteBufferWithInfo(org.omg.CORBA.ORB orb, method in class:ByteBufferWithInfo
131 public ByteBufferWithInfo (ByteBufferWithInfo bbwi) method in class:ByteBufferWithInfo
240 StringBuffer str = new StringBuffer("ByteBufferWithInfo:");
255 ORBUtility.dprint("ByteBufferWithInfo", msg);
H A DBufferManagerWriteStream.java35 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
66 public void overflow (ByteBufferWithInfo bbwi)
H A DCDROutputObject.java49 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
179 ByteBufferWithInfo bbwi = getByteBufferWithInfo();
217 public final ByteBufferWithInfo getByteBufferWithInfo() {
222 public final void setByteBufferWithInfo(ByteBufferWithInfo bbwi) {
H A DCDROutputStreamBase.java153 public abstract ByteBufferWithInfo getByteBufferWithInfo();
154 public abstract void setByteBufferWithInfo(ByteBufferWithInfo bbwi);
H A DIDLJavaSerializationOutputStream.java623 public ByteBufferWithInfo getByteBufferWithInfo() {
632 return new ByteBufferWithInfo(this.orb, byteBuffer, bos.size());
635 public void setByteBufferWithInfo(ByteBufferWithInfo bbwi) {
H A DCDROutputStream.java373 public ByteBufferWithInfo getByteBufferWithInfo() {
377 protected void setByteBufferWithInfo(ByteBufferWithInfo bbwi) {
H A DCDRInputStreamBase.java175 public abstract void setByteBufferWithInfo(ByteBufferWithInfo bbwi);
H A DCDRInputStream_1_0.java144 protected ByteBufferWithInfo bbwi;
257 this.bbwi = new ByteBufferWithInfo(orb,byteBuffer,0);
1886 public static void printBuffer(ByteBufferWithInfo bbwi) {
1962 public void setByteBufferWithInfo(ByteBufferWithInfo bbwi) {
2031 private ByteBufferWithInfo bbwi_;
2044 bbwi_ = new ByteBufferWithInfo(bbwi);
H A DCDROutputStream_1_0.java88 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
106 ByteBufferWithInfo bbwi;
176 this.bbwi = new ByteBufferWithInfo(orb, bufferManager, usePooledByteBuffers);
1273 public ByteBufferWithInfo getByteBufferWithInfo() {
1277 public void setByteBufferWithInfo(ByteBufferWithInfo bbwi) {
1714 public static void printBuffer(ByteBufferWithInfo bbwi) {
H A DCDRInputStream.java422 protected final void setByteBufferWithInfo(ByteBufferWithInfo bbwi) {
H A DIDLJavaSerializationInputStream.java961 public void setByteBufferWithInfo(ByteBufferWithInfo bbwi) {
/openjdk7/hotspot/test/compiler/6852078/
H A DTest6852078.java35 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
44 ByteBufferWithInfo bbwi = new ByteBufferWithInfo( CorbaUtils.getOrb(null, -1, new Hashtable()), bb);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/copyobject/
H A DJavaOutputStream.sjava370 public ByteBufferWithInfo getByteBufferWithInfo() {
374 protected void setByteBufferWithInfo(ByteBufferWithInfo bbwi) {
H A DJavaInputStream.sjava413 protected final void setByteBufferWithInfo(ByteBufferWithInfo bbwi) {
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DSharedCDRClientRequestDispatcherImpl.java99 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
157 ByteBufferWithInfo bbwi = cdrOutputObject.getByteBufferWithInfo();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DMessageBase.java58 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
146 ByteBufferWithInfo bbwi = new ByteBufferWithInfo(orb,viewBuffer);
444 ByteBufferWithInfo bbwi = new ByteBufferWithInfo(orb, viewBuffer);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DCorbaContactInfoBase.java59 import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;

Completed in 98 milliseconds