Lines Matching refs:errno
197 if (errno == EINTR || errno == EAGAIN) { in console_loop()
225 (errno == EINTR || errno == EAGAIN)) { in console_loop()
245 (errno == EINTR || errno == EAGAIN)) { in console_loop()
291 err(errno, "Could not open %s", lockfile); in console_lock()
294 if (errno == EINTR) in console_lock()
297 err(errno, "Could not lock %s", lockfile); in console_lock()
300 err(errno, "Could not fstat %s", lockfile); in console_lock()
302 if (errno != ENOENT) in console_lock()
303 err(errno, "Could not stat %s", lockfile); in console_lock()
403 err(errno, "Could not contact XenStore"); in main()
410 err(errno, "xs_get_domain_path()"); in main()
415 err(errno, "Could not open xc interface"); in main()
419 err(errno, "Failed to get domain information"); in main()
464 err(errno, "Can't set watch for console pty"); in main()
473 err(errno, "Could not read tty from store"); in main()
490 } while ((r == -1 && errno == EINTR) || r == 0); in main()
493 err(errno, "Could not notify parent with fd %d", in main()