Searched refs:spaceInCurrentChunk (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DChunkedOutputStream.java52 private int spaceInCurrentChunk; field in class:ChunkedOutputStream
143 if (spaceInCurrentChunk == 0) {
220 if (bytesToWrite >= spaceInCurrentChunk) {
227 System.arraycopy(b, inputIndex, buf, count, spaceInCurrentChunk);
228 inputIndex += spaceInCurrentChunk;
229 bytesToWrite -= spaceInCurrentChunk;
230 count += spaceInCurrentChunk;
235 spaceInCurrentChunk = 0; //chunk is complete
252 spaceInCurrentChunk -= bytesToWrite;
270 spaceInCurrentChunk
[all...]

Completed in 35 milliseconds