Searched refs:ADD_ERRNO (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Objects/ |
D | exceptions.c | 2676 #define ADD_ERRNO(TYPE, CODE) \ in _PyExc_Init() macro 2767 ADD_ERRNO(BlockingIOError, EAGAIN); in _PyExc_Init() 2768 ADD_ERRNO(BlockingIOError, EALREADY); in _PyExc_Init() 2769 ADD_ERRNO(BlockingIOError, EINPROGRESS); in _PyExc_Init() 2770 ADD_ERRNO(BlockingIOError, EWOULDBLOCK); in _PyExc_Init() 2771 ADD_ERRNO(BrokenPipeError, EPIPE); in _PyExc_Init() 2773 ADD_ERRNO(BrokenPipeError, ESHUTDOWN); in _PyExc_Init() 2775 ADD_ERRNO(ChildProcessError, ECHILD); in _PyExc_Init() 2776 ADD_ERRNO(ConnectionAbortedError, ECONNABORTED); in _PyExc_Init() 2777 ADD_ERRNO(ConnectionRefusedError, ECONNREFUSED); in _PyExc_Init() [all …]
|