Home | History | Annotate | Download | only in libunwindstack

Lines Matching refs:AddressType

28 template <typename AddressType>
29 bool DwarfEhFrameWithHdr<AddressType>::Init(uint64_t offset, uint64_t size) {
54 table_entry_size_ = memory_.template GetEncodedSize<AddressType>(table_encoding_);
57 if (!memory_.template ReadEncodedValue<AddressType>(ptr_encoding_, &ptr_offset_)) {
64 if (!memory_.template ReadEncodedValue<AddressType>(fde_count_encoding, &fde_count_)) {
83 template <typename AddressType>
84 const DwarfFde* DwarfEhFrameWithHdr<AddressType>::GetFdeFromIndex(size_t index) {
92 template <typename AddressType>
93 const typename DwarfEhFrameWithHdr<AddressType>::FdeInfo*
94 DwarfEhFrameWithHdr<AddressType>::GetFdeInfoFromIndex(size_t index) {
105 if (!memory_.template ReadEncodedValue<AddressType>(table_encoding_, &value) ||
106 !memory_.template ReadEncodedValue<AddressType>(table_encoding_, &info->offset)) {
116 template <typename AddressType>
117 bool DwarfEhFrameWithHdr<AddressType>::GetFdeOffsetBinary(uint64_t pc, uint64_t* fde_offset,
151 template <typename AddressType>
152 bool DwarfEhFrameWithHdr<AddressType>::GetFdeOffsetSequential(uint64_t pc, uint64_t* fde_offset) {
184 if (!memory_.template ReadEncodedValue<AddressType>(table_encoding_, &value)) {
191 if (!memory_.template ReadEncodedValue<AddressType>(table_encoding_, &info->offset)) {
217 template <typename AddressType>
218 bool DwarfEhFrameWithHdr<AddressType>::GetFdeOffsetFromPc(uint64_t pc, uint64_t* fde_offset) {