Home
last modified time | relevance | path

Searched refs:error_received (Results 1 – 8 of 8) sorted by relevance

/external/libchrome/mojo/public/cpp/bindings/tests/
Dinterface_ptr_unittest.cc523 bool error_received = false; in TEST() local
532 &SetFlagAndRunClosure, &error_received, run_loop.QuitClosure())); in TEST()
546 EXPECT_FALSE(error_received); in TEST()
554 EXPECT_TRUE(error_received); in TEST()
561 bool* error_received, in WeakMathCalculatorImpl() argument
564 : error_received_(error_received), in WeakMathCalculatorImpl()
597 bool error_received = false; in TEST() local
602 &error_received, &destroyed, in TEST()
620 EXPECT_FALSE(error_received); in TEST()
628 EXPECT_TRUE(error_received); in TEST()
/external/python/cpython3/Lib/asyncio/
Dprotocols.py166 def error_received(self, exc): member in DatagramProtocol
Dselector_events.py958 self._protocol.error_received(exc)
992 self._protocol.error_received(exc)
1015 self._protocol.error_received(exc)
/external/python/cpython3/Doc/library/
Dasyncio-llapi-index.rst464 * - ``callback`` :meth:`error_received() <DatagramProtocol.error_received>`
Dasyncio-protocol.rst654 .. method:: DatagramProtocol.error_received(exc)
673 :meth:`DatagramProtocol.error_received` but otherwise ignored.
889 def error_received(self, exc):
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_selector_events.py1513 self.protocol.error_received.assert_called_with(err)
1638 self.assertTrue(self.protocol.error_received.called)
1734 self.assertTrue(self.protocol.error_received.called)
1741 self.assertFalse(self.protocol.error_received.called)
Dtest_events.py132 def error_received(self, exc): member in MyDatagramProto
3079 self.assertIsNone(dp.error_received(f))
Dtest_base_events.py1027 def error_received(self, exc): member in MyDatagramProto