Searched refs:uncompressed_len (Results 1 – 1 of 1) sorted by relevance
777 size_t uncompressed_len = entry->uncompressed_length; in AddZipEntryToChunks() local778 std::vector<uint8_t> uncompressed_data(uncompressed_len); in AddZipEntryToChunks()779 int ret = ExtractToMemory(handle, entry, uncompressed_data.data(), uncompressed_len); in AddZipEntryToChunks()781 LOG(ERROR) << "Failed to extract " << entry_name << " with size " << uncompressed_len << ": " in AddZipEntryToChunks()1290 size_t uncompressed_len = 0, raw_data_len = 0; in Initialize() local1292 strm.avail_out = allocated - uncompressed_len; in Initialize()1293 strm.next_out = uncompressed_data.data() + uncompressed_len; in Initialize()1300 uncompressed_len = allocated - strm.avail_out; in Initialize()1322 if (footer_size != uncompressed_len) { in Initialize()1323 LOG(WARNING) << "footer size " << footer_size << " != " << uncompressed_len in Initialize()[all …]