Home
last modified time | relevance | path

Searched refs:EndCompilationUnit (Results 1 – 6 of 6) sorted by relevance

/external/google-breakpad/src/common/
Dstabs_reader_unittest.cc221 MOCK_METHOD1(EndCompilationUnit, bool(uint64_t));
317 EXPECT_CALL(mock_handler, EndCompilationUnit(0xd04b7448U)) in TEST_F()
322 EXPECT_CALL(mock_handler, EndCompilationUnit(0x11cfe4b5U)) in TEST_F()
340 EXPECT_CALL(mock_handler, EndCompilationUnit(0)) in TEST_F()
364 EXPECT_CALL(mock_handler, EndCompilationUnit(0)) in TEST_F()
397 EXPECT_CALL(mock_handler, EndCompilationUnit(0)) in TEST_F()
402 EXPECT_CALL(mock_handler, EndCompilationUnit(0)) in TEST_F()
436 EXPECT_CALL(mock_handler, EndCompilationUnit(0x80b0014cU)) in TEST_F()
445 EXPECT_CALL(mock_handler, EndCompilationUnit(0xbffff983U)) in TEST_F()
471 EXPECT_CALL(mock_handler, EndCompilationUnit(0x21a97352)) in TEST_F()
[all …]
Dstabs_to_module_unittest.cc54 EXPECT_TRUE(h.EndCompilationUnit(0xfee4abbed390c3a4LL)); in TEST()
119 EXPECT_TRUE(h.EndCompilationUnit(0)); in TEST()
150 EXPECT_TRUE(h.EndCompilationUnit(0)); // unknown CU end address in TEST()
153 EXPECT_TRUE(h.EndCompilationUnit(0)); in TEST()
199 EXPECT_TRUE(h.EndCompilationUnit(0)); in TEST()
238 EXPECT_TRUE(h.EndCompilationUnit(0)); in TEST()
Dstabs_to_module.h78 bool EndCompilationUnit(uint64_t address);
Dstabs_reader.h284 virtual bool EndCompilationUnit(uint64_t address) { return true; } in EndCompilationUnit() function
Dstabs_to_module.cc79 bool StabsToModule::EndCompilationUnit(uint64_t address) { in EndCompilationUnit() function in google_breakpad::StabsToModule
Dstabs_reader.cc213 if (! handler_->EndCompilationUnit(ending_address)) in ProcessCompilationUnit()