Lines Matching refs:saved_errno
473 int i, saved_errno, reached_preexec = 0; in child_exec() local
477 char hex_errno[sizeof(saved_errno)*2+1]; in child_exec()
599 saved_errno = 0; in child_exec()
607 if (errno != ENOENT && errno != ENOTDIR && saved_errno == 0) { in child_exec()
608 saved_errno = errno; in child_exec()
612 if (saved_errno) in child_exec()
613 errno = saved_errno; in child_exec()
616 saved_errno = errno; in child_exec()
622 if (saved_errno) { in child_exec()
626 while (saved_errno != 0 && cur != hex_errno) { in child_exec()
627 *--cur = Py_hexdigits[saved_errno % 16]; in child_exec()
628 saved_errno /= 16; in child_exec()
743 int saved_errno = 0; in subprocess_fork_exec() local
946 if ((saved_errno = pthread_sigmask(SIG_BLOCK, &all_sigs, &old_sigs))) { in subprocess_fork_exec()
964 saved_errno = errno; in subprocess_fork_exec()
989 if (saved_errno != 0) { in subprocess_fork_exec()
990 errno = saved_errno; in subprocess_fork_exec()