Home
last modified time | relevance | path

Searched refs:uncompressed_data (Results 1 – 2 of 2) sorted by relevance

/aosp12/bootable/recovery/applypatch/
H A Dimgdiff.cpp804 std::vector<uint8_t> uncompressed_data(uncompressed_len); in AddZipEntryToChunks() local
805 int ret = ExtractToMemory(handle, entry, uncompressed_data.data(), uncompressed_len); in AddZipEntryToChunks()
812 curr.SetUncompressedData(std::move(uncompressed_data)); in AddZipEntryToChunks()
1315 std::vector<uint8_t> uncompressed_data(allocated); in Initialize() local
1319 strm.next_out = uncompressed_data.data() + uncompressed_len; in Initialize()
1329 uncompressed_data.resize(allocated); in Initialize()
1355 uncompressed_data.resize(uncompressed_len); in Initialize()
1356 body.SetUncompressedData(std::move(uncompressed_data)); in Initialize()
/aosp12/system/libziparchive/
H A Dzip_archive_test.cc600 std::vector<uint8_t> uncompressed_data(static_cast<size_t>(entry.uncompressed_length)); in TEST() local
601 ASSERT_TRUE(android::base::ReadFully(tmp_file.fd, uncompressed_data.data(), in TEST()
603 ASSERT_EQ(0, memcmp(&uncompressed_data[0], kATxtContents.data(), kATxtContents.size())); in TEST()