Searched refs:bufferpos (Results 1 – 1 of 1) sorted by relevance
57 private int bufferpos; field in AbstractSessionInputBuffer80 this.bufferpos = 0; in init()92 if (this.bufferpos > 0) { in fillBuffer()93 int len = this.bufferlen - this.bufferpos; in fillBuffer()95 System.arraycopy(this.buffer, this.bufferpos, this.buffer, 0, len); in fillBuffer()97 this.bufferpos = 0; in fillBuffer()114 return this.bufferpos < this.bufferlen; in hasBufferedData()125 return this.buffer[this.bufferpos++] & 0xff; in read()139 int chunk = this.bufferlen - this.bufferpos; in read()143 System.arraycopy(this.buffer, this.bufferpos, b, off, chunk); in read()[all …]