Searched refs:MemoryXz (Results 1 – 4 of 4) sorted by relevance
/system/unwinding/libunwindstack/tests/ |
D | MemoryXzTest.cpp | 41 void VerifyContent(MemoryXz& xz, uint64_t offset, uint64_t size) { in VerifyContent() 55 MemoryXz xz(compressed.get(), 0, compressed->Size(), "boot_arm.oat"); in TEST_F() 67 MemoryXz xz(compressed.get(), 0, compressed->Size(), "boot_arm.oat"); in TEST_F() 79 MemoryXz xz(compressed.get(), 0, compressed->Size(), "boot_arm.oat"); in TEST_F() 90 MemoryXz xz(compressed.get(), 0, compressed->Size(), "boot_arm.oat"); in TEST_F() 101 MemoryXz xz(compressed.get(), 0, compressed->Size(), "boot_arm.oat"); in TEST_F() 114 MemoryXz xz(compressed.get(), 0, compressed->Size(), "boot_arm.oat"); in TEST_F() 127 MemoryXz xz(compressed.get(), 0, compressed->Size(), "boot_arm.oat"); in TEST_F()
|
/system/unwinding/libunwindstack/ |
D | MemoryXz.h | 28 class MemoryXz : public Memory { 30 MemoryXz(Memory* memory, uint64_t addr, uint64_t size, const std::string& name); 31 ~MemoryXz();
|
D | Memory.cpp | 57 std::atomic_size_t MemoryXz::total_used_ = 0; 58 std::atomic_size_t MemoryXz::total_size_ = 0; 59 std::atomic_size_t MemoryXz::total_open_ = 0; 569 MemoryXz::MemoryXz(Memory* memory, uint64_t addr, uint64_t size, const std::string& name) in MemoryXz() function in unwindstack::MemoryXz 574 bool MemoryXz::Init() { in Init() 617 MemoryXz::~MemoryXz() { in ~MemoryXz() 623 size_t MemoryXz::Read(uint64_t addr, void* buffer, size_t size) { in Read() 648 bool MemoryXz::ReadBlocks() { in ReadBlocks() 743 bool MemoryXz::Decompress(XzBlock* block) { in Decompress()
|
D | ElfInterface.cpp | 88 std::make_unique<MemoryXz>(memory_, gnu_debugdata_offset_, gnu_debugdata_size_, GetSoname()); in CreateGnuDebugdataMemory()
|