/system/core/libunwindstack/tests/ |
D | DwarfSectionImplTest.cpp | 108 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 125 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 143 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 159 ASSERT_TRUE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 177 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 187 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 197 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 208 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 214 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() 220 ASSERT_FALSE(this->section_->Eval(&cie, &this->memory_, loc_regs, ®s, &finished)); in TYPED_TEST_P() [all …]
|
D | DwarfOpTest.cpp | 70 ASSERT_FALSE(this->op_->Eval(0, 2)); in TYPED_TEST_P() 77 ASSERT_TRUE(this->op_->Eval(0, 1)); in TYPED_TEST_P() 88 ASSERT_TRUE(this->op_->Eval(0, 8)); in TYPED_TEST_P() 100 ASSERT_FALSE(this->op_->Eval(0, 4)); in TYPED_TEST_P() 225 ASSERT_TRUE(this->op_->Eval(0, 5)) << "Failed at size " << i; in TYPED_TEST_P() 235 ASSERT_FALSE(this->op_->Eval(0, 5)); in TYPED_TEST_P() 240 ASSERT_FALSE(this->op_->Eval(0, 5)); in TYPED_TEST_P() 245 ASSERT_FALSE(this->op_->Eval(0, 5)); in TYPED_TEST_P() 1325 ASSERT_FALSE(this->op_->Eval(0, 1)); in TYPED_TEST_P() 1329 ASSERT_FALSE(this->op_->Eval(1, 4)); in TYPED_TEST_P() [all …]
|
D | DwarfSectionTest.cpp | 35 MOCK_METHOD5(Eval, bool(const DwarfCie*, Memory*, const dwarf_loc_regs_t&, Regs*, bool*)); 103 EXPECT_CALL(*section_, Eval(&cie, &process, ::testing::_, nullptr, ::testing::_)) in TEST_F() 129 EXPECT_CALL(*section_, Eval(&cie, &process, ::testing::_, nullptr, ::testing::_)) in TEST_F() 149 EXPECT_CALL(*section_, Eval(&cie, &process, ::testing::_, nullptr, ::testing::_)) in TEST_F()
|
D | ArmExidxDecodeTest.cpp | 1496 ASSERT_TRUE(exidx_->Eval()); in TEST_P() 1527 ASSERT_TRUE(exidx_->Eval()); in TEST_P() 1563 ASSERT_TRUE(exidx_->Eval()); in TEST_P() 1598 ASSERT_TRUE(exidx_->Eval()); in TEST_P() 1638 ASSERT_TRUE(exidx_->Eval()); in TEST_P()
|
/system/core/libunwindstack/include/unwindstack/ |
D | DwarfSection.h | 91 virtual bool Eval(const DwarfCie*, Memory*, const dwarf_loc_regs_t&, Regs*, bool*) = 0; 134 bool Eval(const DwarfCie* cie, Memory* regular_memory, const dwarf_loc_regs_t& loc_regs,
|
/system/core/libunwindstack/ |
D | ArmExidx.h | 66 bool Eval();
|
D | DwarfOp.h | 52 bool Eval(uint64_t start, uint64_t end);
|
D | ElfInterfaceArm.cpp | 129 if (arm.ExtractEntryData(entry_offset) && arm.Eval()) { in StepExidx()
|
D | DwarfSection.cpp | 62 return Eval(it->second.cie, process_memory, it->second, regs, finished); in Step() 384 if (!op.Eval(start, end)) { in EvalExpression() 473 bool DwarfSectionImpl<AddressType>::Eval(const DwarfCie* cie, Memory* regular_memory, in Eval() function in unwindstack::DwarfSectionImpl
|
D | ArmExidx.cpp | 824 bool ArmExidx::Eval() { in Eval() function in unwindstack::ArmExidx
|
D | DwarfOp.cpp | 1482 bool DwarfOp<AddressType>::Eval(uint64_t start, uint64_t end) { in Eval() function in unwindstack::DwarfOp
|
/system/core/libunwindstack/tools/ |
D | unwind_info.cpp | 75 if (!arm.Eval() && arm.status() != ARM_STATUS_NO_UNWIND) { in DumpArm()
|
D | unwind_reg_info.cpp | 160 if (arm.data()->size() != 0 && arm.Eval()) { in PrintArmRegInformation()
|