Home
last modified time | relevance | path

Searched refs:DwarfMemory (Results 1 – 12 of 12) sorted by relevance

/system/core/libunwindstack/
DDwarfMemory.cpp29 bool DwarfMemory::ReadBytes(void* dst, size_t num_bytes) { in ReadBytes()
38 bool DwarfMemory::ReadSigned(uint64_t* value) { in ReadSigned()
47 bool DwarfMemory::ReadULEB128(uint64_t* value) { in ReadULEB128()
62 bool DwarfMemory::ReadSLEB128(int64_t* value) { in ReadSLEB128()
82 size_t DwarfMemory::GetEncodedSize(uint8_t encoding) { in GetEncodedSize()
105 bool DwarfMemory::AdjustEncodedValue(uint8_t encoding, uint64_t* value) { in AdjustEncodedValue()
149 bool DwarfMemory::ReadEncodedValue(uint8_t encoding, uint64_t* value) { in ReadEncodedValue()
241 template bool DwarfMemory::ReadSigned<int8_t>(uint64_t*);
242 template bool DwarfMemory::ReadSigned<int16_t>(uint64_t*);
243 template bool DwarfMemory::ReadSigned<int32_t>(uint64_t*);
[all …]
DDwarfOp.h35 class DwarfMemory; variable
46 DwarfOp(DwarfMemory* memory, Memory* regular_memory) in DwarfOp()
84 DwarfMemory* memory_;
DDwarfCfa.h78 DwarfCfa(DwarfMemory* memory, const DwarfFde* fde, ArchEnum arch) in DwarfCfa()
104 DwarfMemory* memory_;
DAndroid.bp48 "DwarfMemory.cpp",
/system/core/libunwindstack/include/unwindstack/
DDwarfMemory.h27 class DwarfMemory {
29 DwarfMemory(Memory* memory) : memory_(memory) {} in DwarfMemory() function
30 virtual ~DwarfMemory() = default;
DDwarfSection.h112 DwarfMemory memory_;
/system/core/libunwindstack/tests/
DDwarfOpLogTest.cpp41 mem_.reset(new DwarfMemory(&op_memory_)); in SetUp()
48 std::unique_ptr<DwarfMemory> mem_;
DDwarfMemoryTest.cpp34 dwarf_mem_.reset(new DwarfMemory(&memory_)); in SetUp()
61 std::unique_ptr<DwarfMemory> dwarf_mem_;
465 DwarfMemory dwarf_mem(&memory); in ReadEncodedValue_all()
DDwarfCfaLogTest.cpp46 dmem_.reset(new DwarfMemory(&memory_)); in SetUp()
65 std::unique_ptr<DwarfMemory> dmem_;
DDwarfCfaTest.cpp46 dmem_.reset(new DwarfMemory(&memory_)); in SetUp()
64 std::unique_ptr<DwarfMemory> dmem_;
DDwarfOpTest.cpp41 mem_.reset(new DwarfMemory(&op_memory_)); in SetUp()
48 std::unique_ptr<DwarfMemory> mem_;
/system/core/libunwindstack/tools/
Dunwind_reg_info.cpp54 DwarfMemory dwarf_memory(memory); in PrintExpression()