Home
last modified time | relevance | path

Searched refs:DwarfSectionImpl (Results 1 – 4 of 4) sorted by relevance

/system/core/libunwindstack/
DDwarfEhFrameWithHdr.h32 class DwarfEhFrameWithHdr : public DwarfSectionImpl<AddressType> {
36 using DwarfSectionImpl<AddressType>::memory_;
37 using DwarfSectionImpl<AddressType>::pc_offset_;
38 using DwarfSectionImpl<AddressType>::entries_offset_;
39 using DwarfSectionImpl<AddressType>::entries_end_;
40 using DwarfSectionImpl<AddressType>::last_error_;
41 using DwarfSectionImpl<AddressType>::load_bias_;
48 DwarfEhFrameWithHdr(Memory* memory) : DwarfSectionImpl<AddressType>(memory) {} in DwarfEhFrameWithHdr()
DDwarfSection.cpp66 const DwarfCie* DwarfSectionImpl<AddressType>::GetCieFromOffset(uint64_t offset) { in GetCieFromOffset()
82 bool DwarfSectionImpl<AddressType>::FillInCieHeader(DwarfCie* cie) { in FillInCieHeader()
134 bool DwarfSectionImpl<AddressType>::FillInCie(DwarfCie* cie) { in FillInCie()
248 const DwarfFde* DwarfSectionImpl<AddressType>::GetFdeFromOffset(uint64_t offset) { in GetFdeFromOffset()
263 bool DwarfSectionImpl<AddressType>::FillInFdeHeader(DwarfFde* fde) { in FillInFdeHeader()
320 bool DwarfSectionImpl<AddressType>::FillInFde(DwarfFde* fde) { in FillInFde()
374 bool DwarfSectionImpl<AddressType>::EvalExpression(const DwarfLocation& loc, Memory* regular_memory, in EvalExpression()
415 bool DwarfSectionImpl<AddressType>::EvalRegister(const DwarfLocation* loc, uint32_t reg, in EvalRegister()
473 bool DwarfSectionImpl<AddressType>::Eval(const DwarfCie* cie, Memory* regular_memory, in Eval()
554 bool DwarfSectionImpl<AddressType>::GetCfaLocationInfo(uint64_t pc, const DwarfFde* fde, in GetCfaLocationInfo()
[all …]
/system/core/libunwindstack/include/unwindstack/
DDwarfSection.h123 class DwarfSectionImpl : public DwarfSection {
125 DwarfSectionImpl(Memory* memory) : DwarfSection(memory) {} in DwarfSectionImpl() function
126 virtual ~DwarfSectionImpl() = default;
160 class DwarfSectionImplNoHdr : public DwarfSectionImpl<AddressType> {
164 using DwarfSectionImpl<AddressType>::memory_;
165 using DwarfSectionImpl<AddressType>::pc_offset_;
166 using DwarfSectionImpl<AddressType>::entries_offset_;
167 using DwarfSectionImpl<AddressType>::entries_end_;
168 using DwarfSectionImpl<AddressType>::last_error_;
169 using DwarfSectionImpl<AddressType>::load_bias_;
[all …]
/system/core/libunwindstack/tests/
DDwarfSectionImplTest.cpp33 class TestDwarfSectionImpl : public DwarfSectionImpl<TypeParam> {
35 TestDwarfSectionImpl(Memory* memory) : DwarfSectionImpl<TypeParam>(memory) {} in TestDwarfSectionImpl()