Searched defs:bos (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/java/io/charStreams/
H A DWriteLengths.java38 static ByteArrayOutputStream bos = new ByteArrayOutputStream(1 << 15); field in class:WriteLengths
41 bos.reset();
42 OutputStreamWriter osw = new OutputStreamWriter(bos, enc);
46 byte[] ba = bos.toByteArray();
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/
H A DDigesterOutputStream.java49 private UnsyncByteArrayOutputStream bos; field in class:DigesterOutputStream
72 bos = new UnsyncByteArrayOutputStream();
84 bos.write(input);
92 bos.write(input, offset, len);
118 return new ByteArrayInputStream(bos.toByteArray());
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMSignedInfo.java211 public void canonicalize(XMLCryptoContext context,ByteArrayOutputStream bos) argument
218 OutputStream os = new UnsyncBufferedOutputStream(bos);
234 byte[] signedInfoBytes = bos.toByteArray();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DIDLJavaSerializationOutputStream.java74 private _ByteArrayOutputStream bos; field in class:IDLJavaSerializationOutputStream
145 bos =
156 os = new MarshalObjectOutputStream(bos, orb);
189 if (bos.size() < directWriteLength) {
190 bos.write(value); // direct write.
191 if (bos.size() == directWriteLength) {
219 if (bos.size() < directWriteLength) {
223 bos.write((byte)((value >>> 24) & 0xFF));
224 bos.write((byte)((value >>> 16) & 0xFF));
225 bos
[all...]

Completed in 1756 milliseconds