/external/google-breakpad/src/processor/ |
D | cfi_frame_info_unittest.cc | 297 MOCK_METHOD2(RegisterRule, void(const string &, const string &)); 308 EXPECT_CALL(mock_handler, RegisterRule(_, _)).Times(0); in CFIParserFixture() 368 EXPECT_CALL(mock_handler, RegisterRule("nemo", "mellifluous")) in TEST_F() 376 EXPECT_CALL(mock_handler, RegisterRule("galba", "praetorian")) in TEST_F() 378 EXPECT_CALL(mock_handler, RegisterRule("otho", "vitellius")) in TEST_F() 385 EXPECT_CALL(mock_handler, RegisterRule("r1", "r1 expression")) in TEST_F() 387 EXPECT_CALL(mock_handler, RegisterRule("r2", "r2 expression")) in TEST_F() 398 EXPECT_CALL(mock_handler, RegisterRule("reg", _)) in TEST_F() 405 EXPECT_CALL(mock_handler, RegisterRule("r1", "expr")) in TEST_F() 412 EXPECT_CALL(mock_handler, RegisterRule("r1", "expr")) in TEST_F() [all …]
|
D | cfi_frame_info.h | 155 virtual void RegisterRule(const string &name, const string &expression) = 0; 188 void RegisterRule(const string &name, const string &expression);
|
D | cfi_frame_info.cc | 169 else handler_->RegisterRule(name_, expression_); in Report() 181 void CFIFrameInfoParseHandler::RegisterRule(const string &name, in RegisterRule() function in google_breakpad::CFIFrameInfoParseHandler
|
/external/google-breakpad/src/common/ |
D | dwarf_cfi_to_module_unittest.cc | 207 TEST_F(Rule, RegisterRule) { in TEST_F() argument 209 ASSERT_TRUE(handler.RegisterRule(entry_address, return_reg, 3)); in TEST_F() 243 ASSERT_TRUE(handler.RegisterRule(entry_address, 0, 1)); in TEST_F() 256 ASSERT_TRUE(handler.RegisterRule(entry_address, return_reg, 1)); in TEST_F() 268 ASSERT_TRUE(handler.RegisterRule(entry_address + 1, return_reg, 1)); in TEST_F()
|
D | dwarf_cfi_to_module.h | 149 virtual bool RegisterRule(uint64_t address, int reg, int base_register);
|
D | dwarf_cfi_to_module.cc | 241 bool DwarfCFIToModule::RegisterRule(uint64_t address, int reg, in RegisterRule() function in google_breakpad::DwarfCFIToModule
|
/external/google-breakpad/src/common/dwarf/ |
D | dwarf2reader_cfi_unittest.cc | 111 MOCK_METHOD3(RegisterRule, bool(uint64_t address, int reg, int base_register)); 163 EXPECT_CALL(handler, RegisterRule(_, _, _)).Times(0); in CFIFixture() 1213 EXPECT_CALL(handler, RegisterRule(fde_start, 0x278d18f9, 0x1a684414)) in TEST_F() 1468 EXPECT_CALL(handler, RegisterRule(addr, 2, 0x1d2a3767)) in TEST_F() 1547 EXPECT_CALL(handler, RegisterRule(fde_start, i, i + 16)) in TEST_F() 1626 EXPECT_CALL(handler, RegisterRule(0xa870ebdd, 0x3a860351, 0x6c9a6bcf)) in TEST_F() 1641 EXPECT_CALL(handler, RegisterRule(0xf681cfc8, 0x26c53934, 0x18eeb8a4)) in TEST_F() 1659 EXPECT_CALL(handler, RegisterRule(fde_start, 0xe0cf850d, 0x15aab431)) in TEST_F() 1897 EXPECT_CALL(handler, RegisterRule(fde_start, 0x77514acc, 0x464de4ce)) in TEST_F() 1916 EXPECT_CALL(handler, RegisterRule(fde_start, 0xe39acce5, 0x095f1559)) in TEST_F() [all …]
|
D | dwarf2reader.cc | 1419 class CallFrameInfo::RegisterRule: public CallFrameInfo::Rule { class in dwarf2reader::CallFrameInfo 1421 explicit RegisterRule(int register_number) in RegisterRule() function in dwarf2reader::CallFrameInfo::RegisterRule 1423 ~RegisterRule() { } in ~RegisterRule() 1425 return handler->RegisterRule(address, reg, register_number_); in Handle() 1430 const RegisterRule *our_rhs = dynamic_cast<const RegisterRule *>(&rhs); in operator ==() 1433 Rule *Copy() const { return new RegisterRule(*this); } in Copy() 1499 Rule *RegisterRule(int reg) const; 1537 CallFrameInfo::Rule *CallFrameInfo::RuleMap::RegisterRule(int reg) const { in RegisterRule() function in dwarf2reader::CallFrameInfo::RuleMap 2049 !DoRule(ops.register_number, new RegisterRule(ops.offset))) in DoInstruction() 2113 if (!DoRule(i, new RegisterRule(i + 16))) in DoInstruction() [all …]
|
D | dwarf2reader.h | 1026 class RegisterRule; variable 1153 virtual bool RegisterRule(uint64_t address, int reg, int base_register) = 0;
|