Home | History | Annotate | Download | only in elonen

Lines Matching refs:BUFSIZE

539         public static final int BUFSIZE = 8192;
571 this.inputStream = new BufferedInputStream(inputStream, HTTPSession.BUFSIZE);
577 this.inputStream = new BufferedInputStream(inputStream, HTTPSession.BUFSIZE);
771 byte[] buf = new byte[HTTPSession.BUFSIZE];
776 this.inputStream.mark(HTTPSession.BUFSIZE);
778 read = this.inputStream.read(buf, 0, HTTPSession.BUFSIZE);
796 read = this.inputStream.read(buf, this.rlen, HTTPSession.BUFSIZE - this.rlen);