HomeSort by relevance Sort by last modified time
    Searched refs:GetFdeOffsetBinary (Results 1 - 3 of 3) sorted by null

  /system/core/libunwindstack/
DwarfEhFrameWithHdr.h 60 bool GetFdeOffsetBinary(uint64_t pc, uint64_t* fde_offset, uint64_t total_entries);
DwarfEhFrameWithHdr.cpp 117 bool DwarfEhFrameWithHdr<AddressType>::GetFdeOffsetBinary(uint64_t pc, uint64_t* fde_offset,
166 return GetFdeOffsetBinary(pc, fde_offset, fde_info_.size());
225 return GetFdeOffsetBinary(pc, fde_offset, fde_count_);
  /system/core/libunwindstack/tests/
DwarfEhFrameWithHdrTest.cpp 190 EXPECT_FALSE(this->eh_frame_->GetFdeOffsetBinary(0x100, &fde_offset, 10));
196 EXPECT_TRUE(this->eh_frame_->GetFdeOffsetBinary(pc, &fde_offset, 10)) << "Failed at index " << i;
198 EXPECT_TRUE(this->eh_frame_->GetFdeOffsetBinary(pc + 1, &fde_offset, 10))
201 EXPECT_TRUE(this->eh_frame_->GetFdeOffsetBinary(pc + 0xfff, &fde_offset, 10))
208 EXPECT_TRUE(this->eh_frame_->GetFdeOffsetBinary(pc, &fde_offset, 9)) << "Failed at index " << i;
210 EXPECT_TRUE(this->eh_frame_->GetFdeOffsetBinary(pc + 1, &fde_offset, 9))
213 EXPECT_TRUE(this->eh_frame_->GetFdeOffsetBinary(pc + 0xfff, &fde_offset, 9))
224 EXPECT_FALSE(this->eh_frame_->GetFdeOffsetBinary(0x1000, &fde_offset, 10));

Completed in 87 milliseconds