Searched refs:DwarfSectionImpl (Results 1 – 7 of 7) sorted by relevance
/system/unwinding/libunwindstack/ |
D | DwarfEhFrameWithHdr.h | 32 class DwarfEhFrameWithHdr : public DwarfSectionImpl<AddressType> { 36 using DwarfSectionImpl<AddressType>::memory_; 37 using DwarfSectionImpl<AddressType>::last_error_; 44 DwarfEhFrameWithHdr(Memory* memory) : DwarfSectionImpl<AddressType>(memory) {} in DwarfEhFrameWithHdr()
|
D | DwarfEhFrame.h | 28 class DwarfEhFrame : public DwarfSectionImpl<AddressType> { 30 DwarfEhFrame(Memory* memory) : DwarfSectionImpl<AddressType>(memory) {} in DwarfEhFrame()
|
D | DwarfDebugFrame.h | 29 class DwarfDebugFrame : public DwarfSectionImpl<AddressType> { 31 DwarfDebugFrame(Memory* memory) : DwarfSectionImpl<AddressType>(memory) { in DwarfDebugFrame()
|
D | DwarfSection.cpp | 70 const DwarfCie* DwarfSectionImpl<AddressType>::GetCieFromOffset(uint64_t offset) { in GetCieFromOffset() 87 bool DwarfSectionImpl<AddressType>::FillInCieHeader(DwarfCie* cie) { in FillInCieHeader() 139 bool DwarfSectionImpl<AddressType>::FillInCie(DwarfCie* cie) { in FillInCie() 256 const DwarfFde* DwarfSectionImpl<AddressType>::GetFdeFromOffset(uint64_t offset) { in GetFdeFromOffset() 272 bool DwarfSectionImpl<AddressType>::FillInFdeHeader(DwarfFde* fde) { in FillInFdeHeader() 329 bool DwarfSectionImpl<AddressType>::FillInFde(DwarfFde* fde) { in FillInFde() 383 bool DwarfSectionImpl<AddressType>::EvalExpression(const DwarfLocation& loc, Memory* regular_memory, in EvalExpression() 424 bool DwarfSectionImpl<AddressType>::EvalRegister(const DwarfLocation* loc, uint32_t reg, in EvalRegister() 485 bool DwarfSectionImpl<AddressType>::Eval(const DwarfCie* cie, Memory* regular_memory, in Eval() 578 bool DwarfSectionImpl<AddressType>::GetCfaLocationInfo(uint64_t pc, const DwarfFde* fde, in GetCfaLocationInfo() [all …]
|
D | DwarfEhFrameWithHdr.cpp | 37 return DwarfSectionImpl<AddressType>::Init(offset, size, section_bias); in EhFrameInit() 118 fde = DwarfSectionImpl<AddressType>::GetFdeFromPc(pc); in GetFdeFromPc() 212 const DwarfFde* fde_real = DwarfSectionImpl<AddressType>::GetFdeFromPc(fde->pc_start); in GetFdes()
|
/system/unwinding/libunwindstack/include/unwindstack/ |
D | DwarfSection.h | 126 class DwarfSectionImpl : public DwarfSection { 128 DwarfSectionImpl(Memory* memory) : DwarfSection(memory) {} in DwarfSectionImpl() function 129 virtual ~DwarfSectionImpl() = default;
|
/system/unwinding/libunwindstack/tests/ |
D | DwarfSectionImplTest.cpp | 34 class TestDwarfSectionImpl : public DwarfSectionImpl<TypeParam> { 36 TestDwarfSectionImpl(Memory* memory) : DwarfSectionImpl<TypeParam>(memory) {} in TestDwarfSectionImpl()
|