Searched refs:decompressed_data (Results 1 – 6 of 6) sorted by relevance
/system/unwinding/libunwindstack/ |
D | MemoryXz.cpp | 77 memcpy(data.get() + offset, block.decompressed_data.get(), block.decompressed_size); in Init() 82 .decompressed_data = std::move(data), in Init() 105 if (block->decompressed_data == nullptr) { in Read() 112 memcpy(dst, block->decompressed_data.get() + offset, copy_bytes); in Read() 201 .decompressed_data = nullptr, // Lazy allocation and decompression. in ReadBlocks() 234 std::unique_ptr<uint8_t[]> decompressed_data(new uint8_t[block->decompressed_size]); in Decompress() local 235 if (decompressed_data == nullptr) { in Decompress() 247 XzUnpacker_SetOutBuf(&state, decompressed_data.get(), decompressed_size); in Decompress() 265 block->decompressed_data = std::move(decompressed_data); in Decompress()
|
D | MemoryXz.h | 45 std::unique_ptr<uint8_t[]> decompressed_data; member
|
/system/update_engine/payload_consumer/ |
D | bzip_extent_writer_unittest.cc | 89 brillo::Blob decompressed_data(kDecompressedLength); in TEST_F() local 90 for (size_t i = 0; i < decompressed_data.size(); ++i) in TEST_F() 91 decompressed_data[i] = static_cast<uint8_t>("ABC\n"[i % 4]); in TEST_F() 111 test_utils::ExpectVectorsEq(decompressed_data, output); in TEST_F()
|
/system/extras/simpleperf/ |
D | read_elf.cpp | 402 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()
|
D | utils.cpp | 271 bool XzDecompress(const std::string& compressed_data, std::string* decompressed_data) { in XzDecompress() argument 305 *decompressed_data = std::move(dst); in XzDecompress()
|
D | utils.h | 242 bool XzDecompress(const std::string& compressed_data, std::string* decompressed_data);
|