Lines Matching refs:errno
52 printf("*** sigprocmask failed: %s\n", strerror(errno)); in waitpid_with_timeout()
60 int saved_errno = errno; in waitpid_with_timeout()
64 printf("*** sigprocmask failed: %s\n", strerror(errno)); in waitpid_with_timeout()
70 errno = saved_errno; in waitpid_with_timeout()
71 if (errno == EAGAIN) { in waitpid_with_timeout()
72 errno = ETIMEDOUT; in waitpid_with_timeout()
74 printf("*** sigtimedwait failed: %s\n", strerror(errno)); in waitpid_with_timeout()
84 printf("*** waitpid failed: %s\n", strerror(errno)); in waitpid_with_timeout()
208 int err = errno; in DumpFileToFd()
292 if (!silent) dprintf(fd, "*** fork: %s\n", strerror(errno)); in RunCommandToFd()
293 MYLOGE("*** fork: %s\n", strerror(errno)); in RunCommandToFd()
302 strerror(errno)); in RunCommandToFd()
304 MYLOGE("*** could not drop root before running %s: %s\n", command, strerror(errno)); in RunCommandToFd()
329 MYLOGD("execvp on command '%s' failed (error: %s)\n", command, strerror(errno)); in RunCommandToFd()
342 if (errno == ETIMEDOUT) { in RunCommandToFd()