Lines Matching refs:section_
58 void SetUp() override { section_.reset(new MockDwarfSection(&memory_)); } in SetUp()
61 std::unique_ptr<MockDwarfSection> section_; member in unwindstack::DwarfSectionTest
68 EXPECT_CALL(*section_, GetFdeFromPc(0x1000)).WillOnce(::testing::Return(nullptr)); in TEST_F()
72 ASSERT_FALSE(section_->Step(0x1000, nullptr, nullptr, &finished, &is_signal_frame)); in TEST_F()
80 EXPECT_CALL(*section_, GetFdeFromPc(0x1000)).WillOnce(::testing::Return(&fde)); in TEST_F()
84 ASSERT_FALSE(section_->Step(0x1000, ®s_, nullptr, &finished, &is_signal_frame)); in TEST_F()
93 EXPECT_CALL(*section_, GetFdeFromPc(0x1000)).WillOnce(::testing::Return(&fde)); in TEST_F()
94 EXPECT_CALL(*section_, GetCfaLocationInfo(0x1000, &fde, ::testing::_, ::testing::_)) in TEST_F()
99 ASSERT_FALSE(section_->Step(0x1000, ®s_, nullptr, &finished, &is_signal_frame)); in TEST_F()
108 EXPECT_CALL(*section_, GetFdeFromPc(0x1000)).WillOnce(::testing::Return(&fde)); in TEST_F()
109 EXPECT_CALL(*section_, GetCfaLocationInfo(0x1000, &fde, ::testing::_, ::testing::_)) in TEST_F()
113 EXPECT_CALL(*section_, Eval(&cie, &process, ::testing::_, ®s_, ::testing::_)) in TEST_F()
118 ASSERT_TRUE(section_->Step(0x1000, ®s_, &process, &finished, &is_signal_frame)); in TEST_F()
135 EXPECT_CALL(*section_, GetFdeFromPc(0x1000)).WillOnce(::testing::Return(&fde)); in TEST_F()
136 EXPECT_CALL(*section_, GetCfaLocationInfo(0x1000, &fde, ::testing::_, ::testing::_)) in TEST_F()
140 EXPECT_CALL(*section_, Eval(&cie, &process, ::testing::_, ®s_, ::testing::_)) in TEST_F()
145 ASSERT_TRUE(section_->Step(0x1000, ®s_, &process, &finished, &is_signal_frame)); in TEST_F()
146 ASSERT_TRUE(section_->Step(0x1000, ®s_, &process, &finished, &is_signal_frame)); in TEST_F()
147 ASSERT_TRUE(section_->Step(0x1500, ®s_, &process, &finished, &is_signal_frame)); in TEST_F()
156 EXPECT_CALL(*section_, GetFdeFromPc(0x1000)).WillOnce(::testing::Return(&fde0)); in TEST_F()
157 EXPECT_CALL(*section_, GetCfaLocationInfo(0x1000, &fde0, ::testing::_, ::testing::_)) in TEST_F()
161 EXPECT_CALL(*section_, Eval(&cie, &process, ::testing::_, ®s_, ::testing::_)) in TEST_F()
166 ASSERT_TRUE(section_->Step(0x1000, ®s_, &process, &finished, &is_signal_frame)); in TEST_F()
172 EXPECT_CALL(*section_, GetFdeFromPc(0x600)).WillOnce(::testing::Return(&fde1)); in TEST_F()
173 EXPECT_CALL(*section_, GetCfaLocationInfo(0x600, &fde1, ::testing::_, ::testing::_)) in TEST_F()
176 ASSERT_TRUE(section_->Step(0x600, ®s_, &process, &finished, &is_signal_frame)); in TEST_F()
177 ASSERT_TRUE(section_->Step(0x700, ®s_, &process, &finished, &is_signal_frame)); in TEST_F()