Searched refs:uncompressed_length (Results 1 - 3 of 3) sorted by relevance

/system/core/libziparchive/
H A Dzip_archive_test.cc116 ASSERT_EQ(static_cast<uint32_t>(17), data.uncompressed_length);
133 const uint32_t a_size = data.uncompressed_length;
142 const uint32_t b_size = data.uncompressed_length;
188 ASSERT_EQ(static_cast<uint32_t>(0), entry.uncompressed_length);
245 std::vector<uint8_t> uncompressed_data(entry.uncompressed_length);
246 ASSERT_EQ(static_cast<ssize_t>(entry.uncompressed_length),
248 read(fd, &uncompressed_data[0], entry.uncompressed_length)));
H A Dzip_archive.cc729 entry->uncompressed_length = descriptor->uncompressed_size;
793 data->uncompressed_length = cdr->uncompressed_size;
825 || data->uncompressed_length != lfh->uncompressed_size
829 data->compressed_length, data->uncompressed_length, data->crc32,
881 (off64_t)(data_offset + data->uncompressed_length) > cd_offset) {
883 (int64_t)data_offset, data->uncompressed_length, (int64_t)cd_offset);
1012 const uint32_t uncompressed_length = entry->uncompressed_length; local
1064 if (zstream.total_out != uncompressed_length || compressed_length != 0) {
1066 zstream.total_out, uncompressed_length);
[all...]
/system/core/include/ziparchive/
H A Dzip_archive.h70 uint32_t uncompressed_length; member in struct:ZipEntry
156 * |entry->uncompressed_length| bytes will be written to the file at

Completed in 72 milliseconds