Lines Matching refs:streamInfo
158 if (this.streamInfo["data_length"] !== that.uncompressedSize) {
492 var generateZipParts = function(streamInfo, streamedContent, streamingEnded, offset, platform, enco… argument
493 var file = streamInfo["file"],
494 compression = streamInfo["compression"],
521 dataInfo.crc32 = streamInfo["crc32"];
522 dataInfo.compressedSize = streamInfo["compressedSize"];
523 dataInfo.uncompressedSize = streamInfo["uncompressedSize"];
711 var generateDataDescriptors = function (streamInfo) { argument
715 decToHex(streamInfo["crc32"], 4) +
717 decToHex(streamInfo["compressedSize"], 4) +
719 decToHex(streamInfo["uncompressedSize"], 4);
796 ZipFileWorker.prototype.openedSource = function (streamInfo) { argument
798 this.currentFile = streamInfo["file"].name;
800 var streamedContent = this.streamFiles && !streamInfo["file"].dir;
804 …var record = generateZipParts(streamInfo, streamedContent, false, this.currentSourceOffset, this.z…
819 ZipFileWorker.prototype.closedSource = function (streamInfo) { argument
821 var streamedContent = this.streamFiles && !streamInfo["file"].dir;
822 …var record = generateZipParts(streamInfo, streamedContent, true, this.currentSourceOffset, this.zi…
828 data : generateDataDescriptors(streamInfo),
872 this.openedSource(this.previous.streamInfo);
891 self.closedSource(self.previous.streamInfo);
1090 if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) {
2086 this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0);
2114 var length = this.streamInfo[this.propName] || 0;
2115 this.streamInfo[this.propName] = length + chunk.data.length;
2261 this.streamInfo = {};
2351 this.streamInfo = this.generatedError = this.extraStreamInfo = null;
2388 this.streamInfo = previous.streamInfo;
2471 this.streamInfo[key] = this.extraStreamInfo[key];