Home
last modified time | relevance | path

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

/system/unwinding/libunwindstack/
DDwarfEhFrameWithHdr.h34 class DwarfEhFrameWithHdr : public DwarfSectionImpl<AddressType> {
38 using DwarfSectionImpl<AddressType>::memory_;
39 using DwarfSectionImpl<AddressType>::last_error_;
46 DwarfEhFrameWithHdr(std::shared_ptr<Memory>& memory) : DwarfSectionImpl<AddressType>(memory) {} in DwarfEhFrameWithHdr()
DDwarfSection.cpp76 const DwarfCie* DwarfSectionImpl<AddressType>::GetCieFromOffset(uint64_t offset) { in GetCieFromOffset()
93 bool DwarfSectionImpl<AddressType>::FillInCieHeader(DwarfCie* cie) { in FillInCieHeader()
147 bool DwarfSectionImpl<AddressType>::FillInCie(DwarfCie* cie) { in FillInCie()
269 const DwarfFde* DwarfSectionImpl<AddressType>::GetFdeFromOffset(uint64_t offset) { in GetFdeFromOffset()
285 bool DwarfSectionImpl<AddressType>::FillInFdeHeader(DwarfFde* fde) { in FillInFdeHeader()
342 bool DwarfSectionImpl<AddressType>::FillInFde(DwarfFde* fde) { in FillInFde()
396 bool DwarfSectionImpl<AddressType>::EvalExpression(const DwarfLocation& loc, Memory* regular_memory, in EvalExpression()
437 bool DwarfSectionImpl<AddressType>::EvalRegister(const DwarfLocation* loc, uint32_t reg, in EvalRegister()
498 bool DwarfSectionImpl<AddressType>::Eval(const DwarfCie* cie, Memory* regular_memory, in Eval()
591 bool DwarfSectionImpl<AddressType>::GetCfaLocationInfo(uint64_t pc, const DwarfFde* fde, in GetCfaLocationInfo()
[all …]
DDwarfEhFrame.h29 class DwarfEhFrame : public DwarfSectionImpl<AddressType> {
31 DwarfEhFrame(std::shared_ptr<Memory>& memory) : DwarfSectionImpl<AddressType>(memory) {} in DwarfEhFrame()
DDwarfDebugFrame.h28 class DwarfDebugFrame : public DwarfSectionImpl<AddressType> {
30 DwarfDebugFrame(std::shared_ptr<Memory>& memory) : DwarfSectionImpl<AddressType>(memory) { in DwarfDebugFrame()
DDwarfEhFrameWithHdr.cpp38 return DwarfSectionImpl<AddressType>::Init(info); in EhFrameInit()
123 fde = DwarfSectionImpl<AddressType>::GetFdeFromPc(pc); in GetFdeFromPc()
217 const DwarfFde* fde_real = DwarfSectionImpl<AddressType>::GetFdeFromPc(fde->pc_start); in GetFdes()
/system/unwinding/libunwindstack/utils/
DDwarfSectionImplFake.h28 class DwarfSectionImplFake : public DwarfSectionImpl<TypeParam> {
30 DwarfSectionImplFake(std::shared_ptr<Memory>& memory) : DwarfSectionImpl<TypeParam>(memory) {} in DwarfSectionImplFake()
/system/unwinding/libunwindstack/include/unwindstack/
DDwarfSection.h136 class DwarfSectionImpl : public DwarfSection {
138 DwarfSectionImpl(std::shared_ptr<Memory>& memory) : DwarfSection(memory) {} in DwarfSectionImpl() function
139 virtual ~DwarfSectionImpl() = default;