Searched refs:RegisterRule (Results 1 - 9 of 9) sorted by relevance

/external/google-breakpad/src/processor/
H A Dcfi_frame_info_unittest.cc297 MOCK_METHOD2(RegisterRule, void(const string &, const string &));
308 EXPECT_CALL(mock_handler, RegisterRule(_, _)).Times(0);
368 EXPECT_CALL(mock_handler, RegisterRule("nemo", "mellifluous"))
376 EXPECT_CALL(mock_handler, RegisterRule("galba", "praetorian"))
378 EXPECT_CALL(mock_handler, RegisterRule("otho", "vitellius"))
385 EXPECT_CALL(mock_handler, RegisterRule("r1", "r1 expression"))
387 EXPECT_CALL(mock_handler, RegisterRule("r2", "r2 expression"))
398 EXPECT_CALL(mock_handler, RegisterRule("reg", _))
405 EXPECT_CALL(mock_handler, RegisterRule("r1", "expr"))
412 EXPECT_CALL(mock_handler, RegisterRule("r
[all...]
H A Dcfi_frame_info.h155 virtual void RegisterRule(const string &name, const string &expression) = 0;
188 void RegisterRule(const string &name, const string &expression);
H A Dcfi_frame_info.cc169 else handler_->RegisterRule(name_, expression_);
181 void CFIFrameInfoParseHandler::RegisterRule(const string &name, function in class:google_breakpad::CFIFrameInfoParseHandler
/external/google-breakpad/src/common/
H A Ddwarf_cfi_to_module_unittest.cc207 TEST_F(Rule, RegisterRule) {
209 ASSERT_TRUE(handler.RegisterRule(entry_address, return_reg, 3));
243 ASSERT_TRUE(handler.RegisterRule(entry_address, 0, 1));
256 ASSERT_TRUE(handler.RegisterRule(entry_address, return_reg, 1));
268 ASSERT_TRUE(handler.RegisterRule(entry_address + 1, return_reg, 1));
H A Ddwarf_cfi_to_module.h149 virtual bool RegisterRule(uint64 address, int reg, int base_register);
H A Ddwarf_cfi_to_module.cc241 bool DwarfCFIToModule::RegisterRule(uint64 address, int reg, function in class:google_breakpad::DwarfCFIToModule
/external/google-breakpad/src/common/dwarf/
H A Ddwarf2reader.cc988 class CallFrameInfo::RegisterRule: public CallFrameInfo::Rule { class in class:CallFrameInfo
990 explicit RegisterRule(int register_number) function in class:CallFrameInfo::RegisterRule
992 ~RegisterRule() { }
994 return handler->RegisterRule(address, reg, register_number_);
999 const RegisterRule *our_rhs = dynamic_cast<const RegisterRule *>(&rhs);
1002 Rule *Copy() const { return new RegisterRule(*this); }
1060 // Return the current CFA rule. Unlike RegisterRule, this RuleMap retains
1068 Rule *RegisterRule(int reg) const;
1106 CallFrameInfo::Rule *CallFrameInfo::RuleMap::RegisterRule(in function in class:CallFrameInfo::RuleMap
[all...]
H A Ddwarf2reader.h753 class RegisterRule;
880 virtual bool RegisterRule(uint64 address, int reg, int base_register) = 0;
H A Ddwarf2reader_cfi_unittest.cc110 MOCK_METHOD3(RegisterRule, bool(uint64 address, int reg, int base_register));
158 EXPECT_CALL(handler, RegisterRule(_, _, _)).Times(0);
1083 EXPECT_CALL(handler, RegisterRule(fde_start, 0x278d18f9, 0x1a684414))
1338 EXPECT_CALL(handler, RegisterRule(addr, 2, 0x1d2a3767))
1417 EXPECT_CALL(handler, RegisterRule(fde_start, i, i + 16))
1496 EXPECT_CALL(handler, RegisterRule(0xa870ebdd, 0x3a860351, 0x6c9a6bcf))
1511 EXPECT_CALL(handler, RegisterRule(0xf681cfc8, 0x26c53934, 0x18eeb8a4))
1529 EXPECT_CALL(handler, RegisterRule(fde_start, 0xe0cf850d, 0x15aab431))
1767 EXPECT_CALL(handler, RegisterRule(fde_start, 0x77514acc, 0x464de4ce))
1786 EXPECT_CALL(handler, RegisterRule(fde_star
[all...]

Completed in 171 milliseconds