/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 address, int reg, int base_register);
|
D | dwarf_cfi_to_module.cc | 241 bool DwarfCFIToModule::RegisterRule(uint64 address, int reg, in RegisterRule() function in google_breakpad::DwarfCFIToModule
|
/external/google-breakpad/src/common/dwarf/ |
D | dwarf2reader.cc | 988 class CallFrameInfo::RegisterRule: public CallFrameInfo::Rule { class in dwarf2reader::CallFrameInfo 990 explicit RegisterRule(int register_number) in RegisterRule() function in dwarf2reader::CallFrameInfo::RegisterRule 992 ~RegisterRule() { } in ~RegisterRule() 994 return handler->RegisterRule(address, reg, register_number_); in Handle() 999 const RegisterRule *our_rhs = dynamic_cast<const RegisterRule *>(&rhs); in operator ==() 1002 Rule *Copy() const { return new RegisterRule(*this); } in Copy() 1068 Rule *RegisterRule(int reg) const; 1106 CallFrameInfo::Rule *CallFrameInfo::RuleMap::RegisterRule(int reg) const { in RegisterRule() function in dwarf2reader::CallFrameInfo::RuleMap 1617 !DoRule(ops.register_number, new RegisterRule(ops.offset))) in DoInstruction() 1681 if (!DoRule(i, new RegisterRule(i + 16))) in DoInstruction() [all …]
|
D | dwarf2reader_cfi_unittest.cc | 110 MOCK_METHOD3(RegisterRule, bool(uint64 address, int reg, int base_register)); 158 EXPECT_CALL(handler, RegisterRule(_, _, _)).Times(0); in CFIFixture() 1083 EXPECT_CALL(handler, RegisterRule(fde_start, 0x278d18f9, 0x1a684414)) in TEST_F() 1338 EXPECT_CALL(handler, RegisterRule(addr, 2, 0x1d2a3767)) in TEST_F() 1417 EXPECT_CALL(handler, RegisterRule(fde_start, i, i + 16)) in TEST_F() 1496 EXPECT_CALL(handler, RegisterRule(0xa870ebdd, 0x3a860351, 0x6c9a6bcf)) in TEST_F() 1511 EXPECT_CALL(handler, RegisterRule(0xf681cfc8, 0x26c53934, 0x18eeb8a4)) in TEST_F() 1529 EXPECT_CALL(handler, RegisterRule(fde_start, 0xe0cf850d, 0x15aab431)) in TEST_F() 1767 EXPECT_CALL(handler, RegisterRule(fde_start, 0x77514acc, 0x464de4ce)) in TEST_F() 1786 EXPECT_CALL(handler, RegisterRule(fde_start, 0xe39acce5, 0x095f1559)) in TEST_F() [all …]
|
D | dwarf2reader.h | 753 class RegisterRule; variable 880 virtual bool RegisterRule(uint64 address, int reg, int base_register) = 0;
|