Lines Matching defs:ADD_ERRNO
3642 #define ADD_ERRNO(TYPE, CODE) \
3660 ADD_ERRNO(BlockingIOError, EAGAIN);
3661 ADD_ERRNO(BlockingIOError, EALREADY);
3662 ADD_ERRNO(BlockingIOError, EINPROGRESS);
3663 ADD_ERRNO(BlockingIOError, EWOULDBLOCK);
3664 ADD_ERRNO(BrokenPipeError, EPIPE);
3666 ADD_ERRNO(BrokenPipeError, ESHUTDOWN);
3668 ADD_ERRNO(ChildProcessError, ECHILD);
3669 ADD_ERRNO(ConnectionAbortedError, ECONNABORTED);
3670 ADD_ERRNO(ConnectionRefusedError, ECONNREFUSED);
3671 ADD_ERRNO(ConnectionResetError, ECONNRESET);
3672 ADD_ERRNO(FileExistsError, EEXIST);
3673 ADD_ERRNO(FileNotFoundError, ENOENT);
3674 ADD_ERRNO(IsADirectoryError, EISDIR);
3675 ADD_ERRNO(NotADirectoryError, ENOTDIR);
3676 ADD_ERRNO(InterruptedError, EINTR);
3677 ADD_ERRNO(PermissionError, EACCES);
3678 ADD_ERRNO(PermissionError, EPERM);
3682 ADD_ERRNO(PermissionError, ENOTCAPABLE);
3684 ADD_ERRNO(ProcessLookupError, ESRCH);
3685 ADD_ERRNO(TimeoutError, ETIMEDOUT);
3689 #undef ADD_ERRNO