Searched refs:compressed_length (Results 1 – 7 of 7) sorted by relevance
/system/core/libziparchive/ |
D | zip_archive.cc | 511 entry->compressed_length = descriptor->compressed_size; in UpdateEntryFromDataDescriptor() 550 data->compressed_length = cdr->compressed_size; in FindEntry() 592 if (data->compressed_length != lfh->compressed_size in FindEntry() 597 data->compressed_length, data->uncompressed_length, data->crc32, in FindEntry() 636 if (static_cast<off64_t>(data_offset + data->compressed_length) > cd_offset) { in FindEntry() 638 static_cast<int64_t>(data_offset), data->compressed_length, static_cast<int64_t>(cd_offset)); in FindEntry() 948 uint32_t compressed_length = entry->compressed_length; in InflateEntryToWriter() local 952 const size_t getSize = (compressed_length > kBufSize) ? kBufSize : compressed_length; in InflateEntryToWriter() 958 compressed_length -= getSize; in InflateEntryToWriter() 992 if (zstream.total_out != uncompressed_length || compressed_length != 0) { in InflateEntryToWriter()
|
D | zip_writer_test.cc | 68 EXPECT_EQ(strlen(expected), data.compressed_length); in TEST_F() 100 EXPECT_EQ(2u, data.compressed_length); in TEST_F() 106 EXPECT_EQ(3u, data.compressed_length); in TEST_F() 112 EXPECT_EQ(0u, data.compressed_length); in TEST_F()
|
D | zip_archive_stream_entry.cc | 177 compressed_length_ = entry.compressed_length; in Init() 270 length_ = entry.compressed_length; in Init()
|
D | zip_archive_test.cc | 287 ASSERT_EQ(static_cast<uint32_t>(13), data.compressed_length); in TEST() 548 read_data->resize(entry->compressed_length); in ZipArchiveStreamTest()
|
/system/core/include/ziparchive/ |
D | zip_archive.h | 88 uint32_t compressed_length; member
|
/system/extras/simpleperf/ |
D | read_apk.cpp | 134 if (zentry.method != kCompressStored || zentry.compressed_length != zentry.uncompressed_length) { in FindElfInApkByName()
|
/system/core/libbacktrace/ |
D | BacktraceOffline.cpp | 831 if (zentry.method != kCompressStored || zentry.compressed_length != zentry.uncompressed_length) { in OpenEmbeddedElfFile()
|