Home
last modified time | relevance | path

Searched refs:cachePosition (Results 1 – 1 of 1) sorted by relevance

/external/apache-http/src/org/apache/http/impl/io/
DChunkedOutputStream.java62 private int cachePosition = 0; field in ChunkedOutputStream
101 if (this.cachePosition > 0) { in flushCache()
102 this.out.writeLine(Integer.toHexString(this.cachePosition)); in flushCache()
103 this.out.write(this.cache, 0, this.cachePosition); in flushCache()
105 this.cachePosition = 0; in flushCache()
118 this.out.writeLine(Integer.toHexString(this.cachePosition + len)); in flushCacheWithAppend()
119 this.out.write(this.cache, 0, this.cachePosition); in flushCacheWithAppend()
122 this.cachePosition = 0; in flushCacheWithAppend()
149 this.cache[this.cachePosition] = (byte) b; in write()
150 this.cachePosition++; in write()
[all …]