Searched refs:chunkTotal (Results 1 – 1 of 1) sorted by relevance
3551 int chunkTotal; in routeSocketDataToOutput() local3552 while ((chunkTotal = in.readInt()) > 0) { in routeSocketDataToOutput()3553 while (chunkTotal > 0) { in routeSocketDataToOutput()3554 int toRead = (chunkTotal > buffer.length) ? buffer.length : chunkTotal; in routeSocketDataToOutput()3557 chunkTotal -= nRead; in routeSocketDataToOutput()