Home | History | Annotate | Download | only in parser

Lines Matching refs:bytes

35  * Input class for the pipelined parser. Buffer all bytes read from the socket
87 byte[] bytes;
93 public Buffer(byte[] bytes, int length) {
96 this.bytes = bytes;
100 int retval = bytes[ptr++] & 0xFF;
131 public void write(byte[] bytes, int start, int length) throws IOException {
134 Buffer buff = new Buffer(bytes, length);
142 public void write(byte[] bytes) throws IOException {
145 Buffer buff = new Buffer(bytes, bytes.length);