Home
last modified time | relevance | path

Searched refs:decompressed_data (Results 1 – 6 of 6) sorted by relevance

/system/update_engine/payload_consumer/
Dbzip_extent_writer_unittest.cc92 brillo::Blob decompressed_data(kDecompressedLength); in TEST_F() local
93 for (size_t i = 0; i < decompressed_data.size(); ++i) in TEST_F()
94 decompressed_data[i] = static_cast<uint8_t>("ABC\n"[i % 4]); in TEST_F()
114 test_utils::ExpectVectorsEq(decompressed_data, output); in TEST_F()
/system/unwinding/libunwindstack/
DMemory.cpp602 memcpy(data.get() + offset, block.decompressed_data.get(), block.decompressed_size); in Init()
607 .decompressed_data = std::move(data), in Init()
630 if (block->decompressed_data == nullptr) { in Read()
637 memcpy(dst, block->decompressed_data.get() + offset, copy_bytes); in Read()
726 .decompressed_data = nullptr, // Lazy allocation and decompression. in ReadBlocks()
759 std::unique_ptr<uint8_t[]> decompressed_data(new uint8_t[block->decompressed_size]); in Decompress() local
760 if (decompressed_data == nullptr) { in Decompress()
772 XzUnpacker_SetOutBuf(&state, decompressed_data.get(), decompressed_size); in Decompress()
790 block->decompressed_data = std::move(decompressed_data); in Decompress()
DMemoryXz.h46 std::unique_ptr<uint8_t[]> decompressed_data; member
/system/extras/simpleperf/
Dread_elf.cpp402 std::string decompressed_data; in ParseSymbols() local
403 if (XzDecompress(debugdata, &decompressed_data)) { in ParseSymbols()
405 ElfFile::Open(decompressed_data.data(), decompressed_data.size(), &result); in ParseSymbols()
Dutils.cpp268 bool XzDecompress(const std::string& compressed_data, std::string* decompressed_data) { in XzDecompress() argument
302 *decompressed_data = std::move(dst); in XzDecompress()
Dutils.h163 bool XzDecompress(const std::string& compressed_data, std::string* decompressed_data);