Home
last modified time | relevance | path

Searched refs:stdin_fd (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/crypto/heimdal/lib/roken/
H A Dsimple_exec.c144 pipe_execv(FILE **stdin_fd, FILE **stdout_fd, FILE **stderr_fd, in pipe_execv() argument
152 if(stdin_fd != NULL) in pipe_execv()
168 if(stdin_fd != NULL) in pipe_execv()
176 if(stdin_fd == NULL) in pipe_execv()
202 if(stdin_fd != NULL) { in pipe_execv()
216 if(stdin_fd != NULL) { in pipe_execv()
218 *stdin_fd = fdopen(in_fd[1], "w"); in pipe_execv()
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix_libcdep.cc444 fd_t stdin_fd, fd_t stdout_fd, fd_t stderr_fd) { in StartSubprocess() argument
446 if (stdin_fd != kInvalidFd) { in StartSubprocess()
447 internal_close(stdin_fd); in StartSubprocess()
469 if (stdin_fd != kInvalidFd) { in StartSubprocess()
471 internal_dup2(stdin_fd, STDIN_FILENO); in StartSubprocess()
472 internal_close(stdin_fd); in StartSubprocess()
H A Dsanitizer_file.h91 fd_t stdin_fd = kInvalidFd, fd_t stdout_fd = kInvalidFd,
H A Dsanitizer_win.cc1034 fd_t stdin_fd, fd_t stdout_fd, fd_t stderr_fd) { in StartSubprocess() argument
/freebsd-12.1/contrib/netcat/
H A Dnetcat.c797 int stdin_fd = STDIN_FILENO; in readwrite() local
808 stdin_fd = -1; in readwrite()
811 pfd[POLL_STDIN].fd = stdin_fd; in readwrite()
/freebsd-12.1/crypto/openssh/regress/
H A Dnetcat.c776 int stdin_fd = STDIN_FILENO; in readwrite() local
787 stdin_fd = -1; in readwrite()
790 pfd[POLL_STDIN].fd = stdin_fd; in readwrite()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp944 int stdin_fd = GetInputFD(); in Run() local
945 if (stdin_fd >= 0) { in Run()
946 Terminal terminal(stdin_fd); in Run()
951 terminal_state.Save(stdin_fd, false); in Run()