Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix_libcdep.cpp423 const char *const envp[], fd_t stdin_fd, fd_t stdout_fd, in StartSubprocess() argument
426 if (stdin_fd != kInvalidFd) { in StartSubprocess()
427 internal_close(stdin_fd); in StartSubprocess()
449 if (stdin_fd != kInvalidFd) { in StartSubprocess()
451 internal_dup2(stdin_fd, STDIN_FILENO); in StartSubprocess()
452 internal_close(stdin_fd); in StartSubprocess()
H A Dsanitizer_file.h93 const char *const envp[], fd_t stdin_fd = kInvalidFd,
H A Dsanitizer_win.cpp1127 const char *const envp[], fd_t stdin_fd, fd_t stdout_fd, in StartSubprocess() argument
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h431 int stdin_fd = GetInputFD(); in Run() local
432 if (stdin_fd >= 0) { in Run()
433 Terminal terminal(stdin_fd); in Run()