Searched defs:bbwi (Results 1 - 17 of 17) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferManagerWriteGrow.java54 public void overflow (ByteBufferWithInfo bbwi) argument
60 bbwi.growBuffer(orb);
63 bbwi.fragmented = false;
H A DBufferManagerWriteStream.java66 public void overflow (ByteBufferWithInfo bbwi) argument
69 MessageBase.setFlag(bbwi.byteBuffer, Message.MORE_FRAGMENTS_BIT);
84 bbwi.position(0);
85 bbwi.buflen = bbwi.byteBuffer.limit();
86 bbwi.fragmented = true;
H A DBufferManagerRead.java73 public ByteBufferWithInfo underflow (ByteBufferWithInfo bbwi); argument
94 public void close(ByteBufferWithInfo bbwi); argument
H A DBufferManagerWrite.java78 * bbwi.buf contains a byte array which needs to grow by bbwi.needed bytes.
82 * 1. Resize the bbwi.buf like the current implementation of
86 * this.bufQ.put(bbwi);
87 * return new ByteBufferWithInfo(bbwi.length);
90 * Backpatch fragment size field in bbwi.buf.
91 * Set more fragments bit in bbwi.buf.
92 * this.connection.send(bbwi);
93 * return reinitialized bbwi.buf with fragment header
95 * All cases should adjust the returned bbwi
100 overflow(ByteBufferWithInfo bbwi) argument
[all...]
H A DBufferManagerReadGrow.java61 public ByteBufferWithInfo underflow (ByteBufferWithInfo bbwi) argument
98 public void close(ByteBufferWithInfo bbwi) {} argument
H A DBufferManagerWriteCollect.java77 // queue, and allocate a new bbwi.
78 public void overflow (ByteBufferWithInfo bbwi) argument
81 MessageBase.setFlag(bbwi.byteBuffer, Message.MORE_FRAGMENTS_BIT);
84 queue.enqueue(bbwi);
86 // Create a new bbwi
134 ByteBufferWithInfo bbwi = (ByteBufferWithInfo)bufs.next();
135 ((CDROutputObject)outputObject).setByteBufferWithInfo(bbwi);
146 int bbAddress = System.identityHashCode(bbwi.byteBuffer);
153 byteBufferPool.releaseByteBuffer(bbwi.byteBuffer);
154 bbwi
[all...]
H A DByteBufferWithInfo.java131 public ByteBufferWithInfo (ByteBufferWithInfo bbwi) argument
133 this.orb = bbwi.orb;
134 this.debug = bbwi.debug;
135 this.byteBuffer = bbwi.byteBuffer;
136 this.buflen = bbwi.buflen;
138 position(bbwi.position());
139 this.needed = bbwi.needed;
140 this.fragmented = bbwi.fragmented;
H A DBufferManagerReadStream.java75 ByteBufferWithInfo bbwi =
89 fragmentQueue.enqueue(bbwi);
95 public ByteBufferWithInfo underflow (ByteBufferWithInfo bbwi) argument
146 // Release bbwi.byteBuffer to the ByteBufferPool only if
148 if (markEngaged == false && bbwi != null && bbwi.byteBuffer != null)
155 int bbAddress = System.identityHashCode(bbwi.byteBuffer);
163 byteBufferPool.releaseByteBuffer(bbwi.byteBuffer);
164 bbwi.byteBuffer = null;
165 bbwi
181 close(ByteBufferWithInfo bbwi) argument
[all...]
H A DCDROutputObject.java179 ByteBufferWithInfo bbwi = getByteBufferWithInfo();
181 getMessageHeader().setSize(bbwi.byteBuffer, bbwi.getSize());
188 CDROutputStream_1_0.printBuffer(bbwi);
191 bbwi.byteBuffer.position(0).limit(bbwi.getSize());
192 connection.write(bbwi.byteBuffer);
222 public final void setByteBufferWithInfo(ByteBufferWithInfo bbwi) { argument
223 super.setByteBufferWithInfo(bbwi);
H A DCDRInputStream.java422 protected final void setByteBufferWithInfo(ByteBufferWithInfo bbwi) { argument
423 impl.setByteBufferWithInfo(bbwi);
H A DCDRInputStreamBase.java175 public abstract void setByteBufferWithInfo(ByteBufferWithInfo bbwi); argument
H A DCDROutputStreamBase.java154 public abstract void setByteBufferWithInfo(ByteBufferWithInfo bbwi); argument
H A DIDLJavaSerializationInputStream.java961 public void setByteBufferWithInfo(ByteBufferWithInfo bbwi) { argument
H A DIDLJavaSerializationOutputStream.java635 public void setByteBufferWithInfo(ByteBufferWithInfo bbwi) { argument
H A DCDROutputStream.java377 protected void setByteBufferWithInfo(ByteBufferWithInfo bbwi) { argument
378 impl.setByteBufferWithInfo(bbwi);
H A DCDRInputStream_1_0.java144 protected ByteBufferWithInfo bbwi; field in class:CDRInputStream_1_0
229 this.bbwi.byteBuffer,
230 this.bbwi.buflen,
234 ((CDRInputStream_1_0)result).bbwi.position(this.bbwi.position());
235 // To ensure we keep bbwi.byteBuffer.limit in sync with bbwi.buflen.
236 ((CDRInputStream_1_0)result).bbwi.byteBuffer.limit(this.bbwi.buflen);
257 this.bbwi
1886 printBuffer(ByteBufferWithInfo bbwi) argument
1962 setByteBufferWithInfo(ByteBufferWithInfo bbwi) argument
[all...]
H A DCDROutputStream_1_0.java106 ByteBufferWithInfo bbwi; field in class:CDROutputStream_1_0
176 this.bbwi = new ByteBufferWithInfo(orb, bufferManager, usePooledByteBuffers);
204 it = new byte[bbwi.position()];
208 for (int i = 0; i < bbwi.position(); i++)
209 it[i] = bbwi.byteBuffer.get(i);
236 int incr = bbwi.position() & (align - 1);
246 bbwi.position(bbwi.position() + computeAlignment(align));
248 if (bbwi.position() + n > bbwi
1277 setByteBufferWithInfo(ByteBufferWithInfo bbwi) argument
1714 printBuffer(ByteBufferWithInfo bbwi) argument
[all...]

Completed in 265 milliseconds