Home
last modified time | relevance | path

Searched refs:fde_offset (Results 1 – 3 of 3) sorted by relevance

/system/core/libunwindstack/tests/
DDwarfEhFrameWithHdrTest.cpp392 uint64_t fde_offset; in TYPED_TEST_P() local
394 EXPECT_FALSE(this->eh_frame_->GetFdeOffsetFromPc(0x100, &fde_offset)); in TYPED_TEST_P()
401 EXPECT_TRUE(this->eh_frame_->GetFdeOffsetFromPc(pc, &fde_offset)); in TYPED_TEST_P()
402 EXPECT_EQ(0x5000 + i * 0x20, fde_offset); in TYPED_TEST_P()
403 EXPECT_TRUE(this->eh_frame_->GetFdeOffsetFromPc(pc + 1, &fde_offset)); in TYPED_TEST_P()
404 EXPECT_EQ(0x5000 + i * 0x20, fde_offset); in TYPED_TEST_P()
405 EXPECT_TRUE(this->eh_frame_->GetFdeOffsetFromPc(pc + 0xfff, &fde_offset)); in TYPED_TEST_P()
406 EXPECT_EQ(0x5000 + i * 0x20, fde_offset); in TYPED_TEST_P()
414 EXPECT_TRUE(this->eh_frame_->GetFdeOffsetFromPc(pc, &fde_offset)); in TYPED_TEST_P()
415 EXPECT_EQ(0x5000 + i * 0x20, fde_offset); in TYPED_TEST_P()
[all …]
/system/core/libunwindstack/
DDwarfEhFrameWithHdr.cpp105 uint64_t fde_offset; in GetFdeFromPc() local
106 if (!GetFdeOffsetFromPc(pc, &fde_offset)) { in GetFdeFromPc()
109 const DwarfFde* fde = this->GetFdeFromOffset(fde_offset); in GetFdeFromPc()
162 bool DwarfEhFrameWithHdr<AddressType>::GetFdeOffsetFromPc(uint64_t pc, uint64_t* fde_offset) { in GetFdeOffsetFromPc() argument
176 *fde_offset = info->offset; in GetFdeOffsetFromPc()
190 *fde_offset = info->offset; in GetFdeOffsetFromPc()
DDwarfEhFrameWithHdr.h65 bool GetFdeOffsetFromPc(uint64_t pc, uint64_t* fde_offset);