HomeSort by relevance Sort by last modified time
    Searched defs:bufferpos (Results 1 - 2 of 2) sorted by null

  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionInputBuffer.java 62 private int bufferpos; field in class:AbstractSessionInputBuffer
85 this.bufferpos = 0;
97 if (this.bufferpos > 0) {
98 int len = this.bufferlen - this.bufferpos;
100 System.arraycopy(this.buffer, this.bufferpos, this.buffer, 0, len);
102 this.bufferpos = 0;
119 return this.bufferpos < this.bufferlen;
130 return this.buffer[this.bufferpos++] & 0xff;
144 int chunk = this.bufferlen - this.bufferpos;
148 System.arraycopy(this.buffer, this.bufferpos, b, off, chunk)
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
httpcore-4.1.jar 

Completed in 917 milliseconds