Home
last modified time | relevance | path

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

/system/core/libunwindstack/tests/
DDwarfDebugFrameTest.cpp38 debug_frame_ = new DwarfDebugFrame<TypeParam>(&memory_); in SetUp()
42 void TearDown() override { delete debug_frame_; } in TearDown()
45 DwarfDebugFrame<TypeParam>* debug_frame_ = nullptr; member in unwindstack::DwarfDebugFrameTest
124 ASSERT_TRUE(this->debug_frame_->Init(0x5000, 0x600, 0)); in TYPED_TEST_P()
127 this->debug_frame_->GetFdes(&fdes); in TYPED_TEST_P()
166 ASSERT_TRUE(this->debug_frame_->Init(0x5000, 0x600, 0)); in TYPED_TEST_P()
168 const DwarfFde* fde = this->debug_frame_->GetFdeFromPc(0x3600); in TYPED_TEST_P()
174 this->debug_frame_->GetFdes(&fdes); in TYPED_TEST_P()
190 ASSERT_TRUE(this->debug_frame_->Init(0x5000, 0x500, 0)); in TYPED_TEST_P()
193 this->debug_frame_->GetFdes(&fdes); in TYPED_TEST_P()
[all …]
/system/core/libunwindstack/
DElfInterface.cpp61 if (debug_frame_ != nullptr && debug_frame_->GetFdeFromPc(pc) != nullptr) { in IsValidPc()
179 debug_frame_.reset(new DwarfDebugFrame<AddressType>(memory_)); in InitHeadersWithTemplate()
180 if (!debug_frame_->Init(debug_frame_offset_, debug_frame_size_, debug_frame_section_bias_)) { in InitHeadersWithTemplate()
181 debug_frame_.reset(nullptr); in InitHeadersWithTemplate()
508 DwarfSection* debug_frame = debug_frame_.get(); in Step()
526 if (debug_frame_ != nullptr) { in Step()
527 section = debug_frame_.get(); in Step()
/system/core/libunwindstack/include/unwindstack/
DElfInterface.h100 DwarfSection* debug_frame() { return debug_frame_.get(); } in debug_frame()
178 std::unique_ptr<DwarfSection> debug_frame_; variable