Lines Matching refs:streamInfo

50881       if (this.streamInfo['data_length'] !== that.uncompressedSize) {
51235 var generateZipParts = function generateZipParts(streamInfo, streamedContent, streamingEnded, offse…
51236 var file = streamInfo['file'],
51237 compression = streamInfo['compression'],
51261 dataInfo.crc32 = streamInfo['crc32'];
51262 dataInfo.compressedSize = streamInfo['compressedSize'];
51263 dataInfo.uncompressedSize = streamInfo['uncompressedSize'];
51417 var generateDataDescriptors = function generateDataDescriptors(streamInfo) {
51420 decToHex(streamInfo['crc32'], 4) + // compressed size 4 bytes
51421 decToHex(streamInfo['compressedSize'], 4) + // uncompressed size 4 bytes
51422 decToHex(streamInfo['uncompressedSize'], 4);
51495 ZipFileWorker.prototype.openedSource = function (streamInfo) {
51497 this.currentFile = streamInfo['file'].name;
51498 …var streamedContent = this.streamFiles && !streamInfo['file'].dir; // don't stream folders (becaus…
51501 …var record = generateZipParts(streamInfo, streamedContent, false, this.currentSourceOffset, this.z…
51519 ZipFileWorker.prototype.closedSource = function (streamInfo) {
51521 var streamedContent = this.streamFiles && !streamInfo['file'].dir;
51522 …var record = generateZipParts(streamInfo, streamedContent, true, this.currentSourceOffset, this.zi…
51528 data: generateDataDescriptors(streamInfo),
51583 this.openedSource(this.previous.streamInfo);
51604 self.closedSource(self.previous.streamInfo);
51819 if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) {
52910 this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0);
52942 var length = this.streamInfo[this.propName] || 0;
52943 this.streamInfo[this.propName] = length + chunk.data.length;
53101 this.streamInfo = {}; // an error which happened when the worker was paused
53197 this.streamInfo = this.generatedError = this.extraStreamInfo = null;
53237 this.streamInfo = previous.streamInfo; // ... and adding our own bits
53331 this.streamInfo[key] = this.extraStreamInfo[key];