Home
last modified time | relevance | path

Searched refs:SendfileNotAvailableError (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Dexceptions.py21 class SendfileNotAvailableError(RuntimeError): class
Dunix_events.py334 raise exceptions.SendfileNotAvailableError(
339 raise exceptions.SendfileNotAvailableError("not a regular file")
343 raise exceptions.SendfileNotAvailableError("not a regular file")
397 err = exceptions.SendfileNotAvailableError(
Dbase_events.py871 except exceptions.SendfileNotAvailableError as exc:
880 raise exceptions.SendfileNotAvailableError(
1153 except exceptions.SendfileNotAvailableError as exc:
1166 raise exceptions.SendfileNotAvailableError(
Dproactor_events.py711 raise exceptions.SendfileNotAvailableError("not a regular file")
715 raise exceptions.SendfileNotAvailableError("not a regular file")
/external/python/cpython3/Doc/library/
Dasyncio-exceptions.rst44 .. exception:: SendfileNotAvailableError
Dasyncio-eventloop.rst766 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/
Dtest_unix_events.py523 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()
Dtest_proactor_events.py979 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError,
988 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError,
998 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError,
Dtest_sendfile.py344 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError,
Dtest_base_events.py2048 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError,
2059 with self.assertRaisesRegex(asyncio.SendfileNotAvailableError,