Lines Matching refs:uncompressed_length
243 if (entry.uncompressed_length > SIZE_MAX) { in ExtractToPipe()
244 die(0, "entry size %" PRIu64 " is too large to extract.", entry.uncompressed_length); in ExtractToPipe()
246 auto uncompressed_length = static_cast<size_t>(entry.uncompressed_length); in ExtractToPipe() local
247 uint8_t* buffer = new uint8_t[uncompressed_length]; in ExtractToPipe()
248 int err = ExtractToMemory(zah, &entry, buffer, uncompressed_length); in ExtractToPipe()
252 if (!android::base::WriteFully(1, buffer, uncompressed_length)) { in ExtractToPipe()
313 printf("%8" PRIu64 " %s %8" PRIu64 " %3.0f%% %s %08x %s\n", entry.uncompressed_length, in ListOne()
315 CompressionRatio(entry.uncompressed_length, entry.compressed_length), time, entry.crc32, in ListOne()
318 printf("%9" PRIu64 " %s %s\n", entry.uncompressed_length, time, name.c_str()); in ListOne()
378 entry.uncompressed_length, entry.is_text ? 't' : 'b', in InfoOne()
402 total_uncompressed_length += entry.uncompressed_length; in ProcessOne()