Home | History | Annotate | Download | only in include

Lines Matching defs:XX

76 #define UV_ERRNO_MAP(XX)                                                      \
77 XX(E2BIG, "argument list too long") \
78 XX(EACCES, "permission denied") \
79 XX(EADDRINUSE, "address already in use") \
80 XX(EADDRNOTAVAIL, "address not available") \
81 XX(EAFNOSUPPORT, "address family not supported") \
82 XX(EAGAIN, "resource temporarily unavailable") \
83 XX(EAI_ADDRFAMILY, "address family not supported") \
84 XX(EAI_AGAIN, "temporary failure") \
85 XX(EAI_BADFLAGS, "bad ai_flags value") \
86 XX(EAI_BADHINTS, "invalid value for hints") \
87 XX(EAI_CANCELED, "request canceled") \
88 XX(EAI_FAIL, "permanent failure") \
89 XX(EAI_FAMILY, "ai_family not supported") \
90 XX(EAI_MEMORY, "out of memory") \
91 XX(EAI_NODATA, "no address") \
92 XX(EAI_NONAME, "unknown node or service") \
93 XX(EAI_OVERFLOW, "argument buffer overflow") \
94 XX(EAI_PROTOCOL, "resolved protocol is unknown") \
95 XX(EAI_SERVICE, "service not available for socket type") \
96 XX(EAI_SOCKTYPE, "socket type not supported") \
97 XX(EALREADY, "connection already in progress") \
98 XX(EBADF, "bad file descriptor") \
99 XX(EBUSY, "resource busy or locked") \
100 XX(ECANCELED, "operation canceled") \
101 XX(ECHARSET, "invalid Unicode character") \
102 XX(ECONNABORTED, "software caused connection abort") \
103 XX(ECONNREFUSED, "connection refused") \
104 XX(ECONNRESET, "connection reset by peer") \
105 XX(EDESTADDRREQ, "destination address required") \
106 XX(EEXIST, "file already exists") \
107 XX(EFAULT, "bad address in system call argument") \
108 XX(EFBIG, "file too large") \
109 XX(EHOSTUNREACH, "host is unreachable") \
110 XX(EINTR, "interrupted system call") \
111 XX(EINVAL, "invalid argument") \
112 XX(EIO, "i/o error") \
113 XX(EISCONN, "socket is already connected") \
114 XX(EISDIR, "illegal operation on a directory") \
115 XX(ELOOP, "too many symbolic links encountered") \
116 XX(EMFILE, "too many open files") \
117 XX(EMSGSIZE, "message too long") \
118 XX(ENAMETOOLONG, "name too long") \
119 XX(ENETDOWN, "network is down") \
120 XX(ENETUNREACH, "network is unreachable") \
121 XX(ENFILE, "file table overflow") \
122 XX(ENOBUFS, "no buffer space available") \
123 XX(ENODEV, "no such device") \
124 XX(ENOENT, "no such file or directory") \
125 XX(ENOMEM, "not enough memory") \
126 XX(ENONET, "machine is not on the network") \
127 XX(ENOPROTOOPT, "protocol not available") \
128 XX(ENOSPC, "no space left on device") \
129 XX(ENOSYS, "function not implemented") \
130 XX(ENOTCONN, "socket is not connected") \
131 XX(ENOTDIR, "not a directory") \
132 XX(ENOTEMPTY, "directory not empty") \
133 XX(ENOTSOCK, "socket operation on non-socket") \
134 XX(ENOTSUP, "operation not supported on socket") \
135 XX(EOVERFLOW, "value too large for defined data type") \
136 XX(EPERM, "operation not permitted") \
137 XX(EPIPE, "broken pipe") \
138 XX(EPROTO, "protocol error") \
139 XX(EPROTONOSUPPORT, "protocol not supported") \
140 XX(EPROTOTYPE, "protocol wrong type for socket") \
141 XX(ERANGE, "result too large") \
142 XX(EROFS, "read-only file system") \
143 XX(ESHUTDOWN, "cannot send after transport endpoint shutdown") \
144 XX(ESPIPE, "invalid seek") \
145 XX(ESRCH, "no such process") \
146 XX(ETIMEDOUT, "connection timed out") \
147 XX(ETXTBSY, "text file is busy") \
148 XX(EXDEV, "cross-device link not permitted") \
149 XX(UNKNOWN, "unknown error") \
150 XX(EOF, "end of file") \
151 XX(ENXIO, "no such device or address") \
152 XX(EMLINK, "too many links") \
153 XX(EHOSTDOWN, "host is down") \
154 XX(EREMOTEIO, "remote I/O error") \
155 XX(ENOTTY, "inappropriate ioctl for device") \
156 XX(EFTYPE, "inappropriate file type or format") \
157 XX(EILSEQ, "illegal byte sequence") \
158 XX(ESOCKTNOSUPPORT, "socket type not supported") \
159 XX(ENODATA, "no data available") \
160 XX(EUNATCH, "protocol driver not attached") \
161 XX(ENOEXEC, "exec format error") \
163 #define UV_HANDLE_TYPE_MAP(XX) \
164 XX(ASYNC, async) \
165 XX(CHECK, check) \
166 XX(FS_EVENT, fs_event) \
167 XX(FS_POLL, fs_poll) \
168 XX(HANDLE, handle) \
169 XX(IDLE, idle) \
170 XX(NAMED_PIPE, pipe) \
171 XX(POLL, poll) \
172 XX(PREPARE, prepare) \
173 XX(PROCESS, process) \
174 XX(STREAM, stream) \
175 XX(TCP, tcp) \
176 XX(TIMER, timer) \
177 XX(TTY, tty) \
178 XX(UDP, udp) \
179 XX(SIGNAL, signal) \
181 #define UV_REQ_TYPE_MAP(XX) \
182 XX(REQ, req) \
183 XX(CONNECT, connect) \
184 XX(WRITE, write) \
185 XX(SHUTDOWN, shutdown) \
186 XX(UDP_SEND, udp_send) \
187 XX(FS, fs) \
188 XX(WORK, work) \
189 XX(GETADDRINFO, getaddrinfo) \
190 XX(GETNAMEINFO, getnameinfo) \
191 XX(RANDOM, random) \
194 #define XX(code, _) UV_ ## code = UV__ ## code,
195 UV_ERRNO_MAP(XX)
196 #undef XX
202 #define XX(uc, lc) UV_##uc,
203 UV_HANDLE_TYPE_MAP(XX)
204 #undef XX
211 #define XX(uc, lc) UV_##uc,
212 UV_REQ_TYPE_MAP(XX)
213 #undef XX
1923 #define XX(_, name) uv_ ## name ## _t name;
1925 UV_HANDLE_TYPE_MAP(XX)
1929 UV_REQ_TYPE_MAP(XX)
1931 #undef XX