Lines Matching refs:errno

25  * $FreeBSD: stable/11/cddl/lib/libdtrace/errno.d 333617 2018-05-15 00:00:44Z dteske $
242 * Error strings from <sys/errno.h>
245 inline string strerror[int errno] =
246 errno == 0 ? "Success" :
247 errno == EPERM ? "Operation not permitted" :
248 errno == ENOENT ? "No such file or directory" :
249 errno == ESRCH ? "No such process" :
250 errno == EINTR ? "Interrupted system call" :
251 errno == EIO ? "Input/output error" :
252 errno == ENXIO ? "Device not configured" :
253 errno == E2BIG ? "Argument list too long" :
254 errno == ENOEXEC ? "Exec format error" :
255 errno == EBADF ? "Bad file descriptor" :
256 errno == ECHILD ? "No child processes" :
257 errno == EDEADLK ? "Resource deadlock avoided" :
258 errno == ENOMEM ? "Cannot allocate memory" :
259 errno == EACCES ? "Permission denied" :
260 errno == EFAULT ? "Bad address" :
261 errno == ENOTBLK ? "Block device required" :
262 errno == EBUSY ? "Device busy" :
263 errno == EEXIST ? "File exists" :
264 errno == EXDEV ? "Cross-device link" :
265 errno == ENODEV ? "Operation not supported by device" :
266 errno == ENOTDIR ? "Not a directory" :
267 errno == EISDIR ? "Is a directory" :
268 errno == EINVAL ? "Invalid argument" :
269 errno == ENFILE ? "Too many open files in system" :
270 errno == EMFILE ? "Too many open files" :
271 errno == ENOTTY ? "Inappropriate ioctl for device" :
272 errno == ETXTBSY ? "Text file busy" :
273 errno == EFBIG ? "File too large" :
274 errno == ENOSPC ? "No space left on device" :
275 errno == ESPIPE ? "Illegal seek" :
276 errno == EROFS ? "Read-only filesystem" :
277 errno == EMLINK ? "Too many links" :
278 errno == EPIPE ? "Broken pipe" :
279 errno == EDOM ? "Numerical argument out of domain" :
280 errno == ERANGE ? "Result too large" :
281 errno == EAGAIN ? "Resource temporarily unavailable" :
282 errno == EINPROGRESS ? "Operation now in progress" :
283 errno == EALREADY ? "Operation already in progress" :
284 errno == ENOTSOCK ? "Socket operation on non-socket" :
285 errno == EDESTADDRREQ ? "Destination address required" :
286 errno == EMSGSIZE ? "Message too long" :
287 errno == EPROTOTYPE ? "Protocol wrong type for socket" :
288 errno == ENOPROTOOPT ? "Protocol not available" :
289 errno == EPROTONOSUPPORT ? "Protocol not supported" :
290 errno == ESOCKTNOSUPPORT ? "Socket type not supported" :
291 errno == EOPNOTSUPP ? "Operation not supported" :
292 errno == EPFNOSUPPORT ? "Protocol family not supported" :
293 errno == EAFNOSUPPORT ? "Address family not supported by protocol family" :
294 errno == EADDRINUSE ? "Address already in use" :
295 errno == EADDRNOTAVAIL ? "Can't assign requested address" :
296 errno == ENETDOWN ? "Network is down" :
297 errno == ENETUNREACH ? "Network is unreachable" :
298 errno == ENETRESET ? "Network dropped connection on reset" :
299 errno == ECONNABORTED ? "Software caused connection abort" :
300 errno == ECONNRESET ? "Connection reset by peer" :
301 errno == ENOBUFS ? "No buffer space available" :
302 errno == EISCONN ? "Socket is already connected" :
303 errno == ENOTCONN ? "Socket is not connected" :
304 errno == ESHUTDOWN ? "Can't send after socket shutdown" :
305 errno == ETOOMANYREFS ? "Too many references: can't splice" :
306 errno == ETIMEDOUT ? "Operation timed out" :
307 errno == ECONNREFUSED ? "Connection refused" :
308 errno == ELOOP ? "Too many levels of symbolic links" :
309 errno == ENAMETOOLONG ? "File name too long" :
310 errno == EHOSTDOWN ? "Host is down" :
311 errno == EHOSTUNREACH ? "No route to host" :
312 errno == ENOTEMPTY ? "Directory not empty" :
313 errno == EPROCLIM ? "Too many processes" :
314 errno == EUSERS ? "Too many users" :
315 errno == EDQUOT ? "Disc quota exceeded" :
316 errno == ESTALE ? "Stale NFS file handle" :
317 errno == EREMOTE ? "Too many levels of remote in path" :
318 errno == EBADRPC ? "RPC struct is bad" :
319 errno == ERPCMISMATCH ? "RPC version wrong" :
320 errno == EPROGUNAVAIL ? "RPC prog. not avail" :
321 errno == EPROGMISMATCH ? "Program version wrong" :
322 errno == EPROCUNAVAIL ? "Bad procedure for program" :
323 errno == ENOLCK ? "No locks available" :
324 errno == ENOSYS ? "Function not implemented" :
325 errno == EFTYPE ? "Inappropriate file type or format" :
326 errno == EAUTH ? "Authentication error" :
327 errno == ENEEDAUTH ? "Need authenticator" :
328 errno == EIDRM ? "Identifier removed" :
329 errno == ENOMSG ? "No message of desired type" :
330 errno == EOVERFLOW ? "Value too large to be stored in data type" :
331 errno == ECANCELED ? "Operation canceled" :
332 errno == EILSEQ ? "Illegal byte sequence" :
333 errno == ENOATTR ? "Attribute not found" :
334 errno == EDOOFUS ? "Programming error" :
335 errno == EBADMSG ? "Bad message" :
336 errno == EMULTIHOP ? "Multihop attempted" :
337 errno == ENOLINK ? "Link has been severed" :
338 errno == EPROTO ? "Protocol error" :
339 errno == ENOTCAPABLE ? "Capabilities insufficient" :
340 errno == ECAPMODE ? "Not permitted in capability mode" :
341 errno == ENOTRECOVERABLE ? "State not recoverable" :
342 errno == EOWNERDEAD ? "Previous owner died" :
343 errno == ERESTART ? "restart syscall" :
344 errno == EJUSTRETURN ? "don't modify regs, just return" :
345 errno == ENOIOCTL ? "ioctl not handled by this layer" :
346 errno == EDIRIOCTL ? "do direct ioctl in GEOM" :
347 errno == ERELOOKUP ? "retry the directory lookup" :