OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RegisterRule
(Results
1 - 9
of
9
) sorted by null
/external/google-breakpad/src/processor/
cfi_frame_info.h
155
virtual void
RegisterRule
(const string &name, const string &expression) = 0;
188
void
RegisterRule
(const string &name, const string &expression);
cfi_frame_info_unittest.cc
297
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
("r1", "expr")
[
all
...]
cfi_frame_info.cc
169
else handler_->
RegisterRule
(name_, expression_);
181
void CFIFrameInfoParseHandler::
RegisterRule
(const string &name,
/external/google-breakpad/src/common/
dwarf_cfi_to_module_unittest.cc
207
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));
dwarf_cfi_to_module.h
149
virtual bool
RegisterRule
(uint64 address, int reg, int base_register);
dwarf_cfi_to_module.cc
241
bool DwarfCFIToModule::
RegisterRule
(uint64 address, int reg,
/external/google-breakpad/src/common/dwarf/
dwarf2reader.cc
[
all
...]
dwarf2reader.h
[
all
...]
dwarf2reader_cfi_unittest.cc
110
MOCK_METHOD3(
RegisterRule
, bool(uint64 address, int reg, int base_register));
158
EXPECT_CALL(handler,
RegisterRule
(_, _, _)).Times(0);
[
all
...]
Completed in 3501 milliseconds