Searched refs:ByteInputStream (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DByteInputStream.java33 public class ByteInputStream extends ByteArrayInputStream { class in inherits:ByteArrayInputStream
36 public ByteInputStream() { method in class:ByteInputStream
40 public ByteInputStream(byte buf[], int length) { method in class:ByteInputStream
44 public ByteInputStream(byte buf[], int offset, int length) { method in class:ByteInputStream
H A DJAXMStreamSource.java47 } else if (is instanceof ByteInputStream) {
48 this.in = (ByteInputStream) is;
H A DByteOutputStream.java154 public ByteInputStream newInputStream() {
155 return new ByteInputStream(buf,count);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DSOAPPartImpl.java212 * a ByteInputStream, and for a FastInfosetSource will
213 * replace the InputStream with a ByteInputStream.
243 * Underlying stream must be ByteInputStream for getContentAsStream(). We pay the
245 * getBytes() is called on a ByteInputStream.
247 if (!(is instanceof ByteInputStream)) {
251 // source.setInputStream(new ByteInputStream(...))
295 if (!(is instanceof ByteInputStream)) {
299 return (ByteInputStream) is;
H A DMessageImpl.java1179 if (in instanceof ByteInputStream) {
1180 ByteInputStream bIn = (ByteInputStream)in;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/client/p2p/
H A DHttpSOAPConnection.java326 ByteInputStream in = new ByteInputStream(bytes, length);

Completed in 38 milliseconds