Searched refs:SendfileNotAvailableError (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Lib/asyncio/ |
D | exceptions.py | 21 class SendfileNotAvailableError(RuntimeError): class
|
D | unix_events.py | 334 raise exceptions.SendfileNotAvailableError( 339 raise exceptions.SendfileNotAvailableError("not a regular file") 343 raise exceptions.SendfileNotAvailableError("not a regular file") 397 err = exceptions.SendfileNotAvailableError(
|
D | base_events.py | 871 except exceptions.SendfileNotAvailableError as exc: 880 raise exceptions.SendfileNotAvailableError( 1153 except exceptions.SendfileNotAvailableError as exc: 1166 raise exceptions.SendfileNotAvailableError(
|
D | proactor_events.py | 711 raise exceptions.SendfileNotAvailableError("not a regular file") 715 raise exceptions.SendfileNotAvailableError("not a regular file")
|
/external/python/cpython3/Doc/library/ |
D | asyncio-exceptions.rst | 44 .. exception:: SendfileNotAvailableError
|
D | asyncio-eventloop.rst | 766 Raise :exc:`SendfileNotAvailableError` if the system does not support 956 Raise :exc:`SendfileNotAvailableError` if the system does not support
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_unix_events.py | 523 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError, 532 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError, 541 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError, 551 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError, 607 self.assertIsInstance(exc, asyncio.SendfileNotAvailableError) 632 err = asyncio.SendfileNotAvailableError()
|
D | test_proactor_events.py | 979 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError, 988 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError, 998 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError,
|
D | test_sendfile.py | 344 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError,
|
D | test_base_events.py | 2048 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError, 2059 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError,
|