HomeSort by relevance Sort by last modified time
    Searched refs:mock_handler (Results 1 - 5 of 5) sorted by null

  /external/google-breakpad/src/common/
stabs_reader_unittest.cc 234 // strings, and pass the parsed information to mock_handler. Use the
251 &mock_handler);
258 MockStabsReaderHandler mock_handler; member in struct:__anon20804::StabsFixture
293 EXPECT_CALL(mock_handler,
297 EXPECT_CALL(mock_handler, StartFunction(StrEq("fun1"), 0xa049f4b1U))
299 EXPECT_CALL(mock_handler,
302 EXPECT_CALL(mock_handler,
305 EXPECT_CALL(mock_handler, EndFunction(0xbf27cf93U))
307 EXPECT_CALL(mock_handler, StartFunction(StrEq("fun2"), 0xbf27cf93U))
309 EXPECT_CALL(mock_handler,
    [all...]
  /external/google-breakpad/src/processor/
cfi_frame_info_unittest.cc 303 CFIParserFixture() : parser(&mock_handler) {
304 // Expect no parsing results to be reported to mock_handler. Individual
306 EXPECT_CALL(mock_handler, CFARule(_)).Times(0);
307 EXPECT_CALL(mock_handler, RARule(_)).Times(0);
308 EXPECT_CALL(mock_handler, RegisterRule(_, _)).Times(0);
311 MockCFIRuleParserHandler mock_handler; member in class:CFIParserFixture
358 EXPECT_CALL(mock_handler, CFARule("spleen")).WillOnce(Return());
363 EXPECT_CALL(mock_handler, RARule("notoriety")).WillOnce(Return());
368 EXPECT_CALL(mock_handler, RegisterRule("nemo", "mellifluous"))
374 EXPECT_CALL(mock_handler, CFARule("cfa expression")).WillOnce(Return())
    [all...]
  /system/core/fastboot/
socket_test.cpp 366 SocketMock* mock_handler = new SocketMock; local
367 mock.AddAccept(std::unique_ptr<SocketMock>(mock_handler));
368 EXPECT_EQ(mock_handler, mock.Accept().get());
  /external/python/cpython3/Lib/test/test_asyncio/
test_base_events.py 653 mock_handler = mock.Mock()
654 self.loop.set_exception_handler(mock_handler)
655 self.assertIs(self.loop.get_exception_handler(), mock_handler)
657 mock_handler.assert_called_with(self.loop, {
664 mock_handler.reset_mock()
674 assert not mock_handler.called
    [all...]
test_tasks.py     [all...]

Completed in 114 milliseconds