Home
last modified time | relevance | path

Searched refs:stderr_fd (Results 1 – 8 of 8) sorted by relevance

/freebsd/crypto/heimdal/lib/roken/
H A Dsimple_exec.c144 pipe_execv(FILE **stdin_fd, FILE **stdout_fd, FILE **stderr_fd, in pipe_execv() argument
156 if(stderr_fd != NULL) in pipe_execv()
172 if(stderr_fd != NULL) in pipe_execv()
180 if(stderr_fd == NULL) in pipe_execv()
210 if(stderr_fd != NULL) { in pipe_execv()
224 if(stderr_fd != NULL) { in pipe_execv()
226 *stderr_fd = fdopen(err_fd[0], "r"); in pipe_execv()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix_libcdep.cpp424 fd_t stderr_fd) { in StartSubprocess() argument
432 if (stderr_fd != kInvalidFd) { in StartSubprocess()
433 internal_close(stderr_fd); in StartSubprocess()
459 if (stderr_fd != kInvalidFd) { in StartSubprocess()
461 internal_dup2(stderr_fd, STDERR_FILENO); in StartSubprocess()
462 internal_close(stderr_fd); in StartSubprocess()
H A Dsanitizer_file.h95 fd_t stdout_fd = kInvalidFd, fd_t stderr_fd = kInvalidFd);
H A Dsanitizer_win.cpp1144 fd_t stderr_fd) { in StartSubprocess() argument
/freebsd/lib/libcasper/services/cap_syslog/
H A Dcap_syslog.c152 int stderr_fd; in slog_openlog() local
162 stderr_fd = dnvlist_get_descriptor(nvlin, "stderr", -1); in slog_openlog()
166 (void)dup2(stderr_fd, STDERR_FILENO); in slog_openlog()
/freebsd/contrib/kyua/utils/process/
H A Dchild.cpp279 const int stderr_fd = open_for_append(stderr_file); in fork_files_aux() local
280 safe_dup(stderr_fd, STDERR_FILENO); in fork_files_aux()
281 ::close(stderr_fd); in fork_files_aux()
/freebsd/contrib/atf/atf-c++/detail/
H A Dprocess.hpp214 int stderr_fd(void);
H A Dprocess.cpp328 impl::child::stderr_fd(void) in stderr_fd() function in impl::child