Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcessLaunchInfo.cpp118 const FileAction *ProcessLaunchInfo::GetFileActionForFD(int fd) const { in GetFileActionForFD() function in ProcessLaunchInfo
227 if (GetFileActionForFD(STDIN_FILENO) == nullptr) in SetUpPtyRedirection()
232 if (GetFileActionForFD(STDOUT_FILENO) == nullptr) in SetUpPtyRedirection()
237 if (GetFileActionForFD(STDERR_FILENO) == nullptr) in SetUpPtyRedirection()
H A DTarget.cpp3070 if (info.GetFileActionForFD(STDIN_FILENO) == nullptr || in FinalizeFileActions()
3071 info.GetFileActionForFD(STDOUT_FILENO) == nullptr || in FinalizeFileActions()
3072 info.GetFileActionForFD(STDERR_FILENO) == nullptr) { in FinalizeFileActions()
3097 if (info.GetFileActionForFD(STDIN_FILENO) == nullptr) in FinalizeFileActions()
3099 if (info.GetFileActionForFD(STDOUT_FILENO) == nullptr) in FinalizeFileActions()
3101 if (info.GetFileActionForFD(STDERR_FILENO) == nullptr) in FinalizeFileActions()
4072 launch_info.GetFileActionForFD(STDIN_FILENO); in SetProcessLaunchInfo()
4077 launch_info.GetFileActionForFD(STDOUT_FILENO); in SetProcessLaunchInfo()
4082 launch_info.GetFileActionForFD(STDERR_FILENO); in SetProcessLaunchInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcessLaunchInfo.h64 const FileAction *GetFileActionForFD(int fd) const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp147 if (!info.GetFileActionForFD(fd) && fd != error_fd) in ChildFunc()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp393 file_action = launch_info.GetFileActionForFD(STDIN_FILENO); in DoLaunch()
397 file_action = launch_info.GetFileActionForFD(STDOUT_FILENO); in DoLaunch()
401 file_action = launch_info.GetFileActionForFD(STDERR_FILENO); in DoLaunch()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp215 m_process_launch_info.GetFileActionForFD(STDIN_FILENO) == nullptr || in LaunchProcess()
216 m_process_launch_info.GetFileActionForFD(STDOUT_FILENO) == nullptr || in LaunchProcess()
217 m_process_launch_info.GetFileActionForFD(STDERR_FILENO) == nullptr; in LaunchProcess()
H A DProcessGDBRemote.cpp819 file_action = launch_info.GetFileActionForFD(STDIN_FILENO); in DoLaunch()
824 file_action = launch_info.GetFileActionForFD(STDOUT_FILENO); in DoLaunch()
829 file_action = launch_info.GetFileActionForFD(STDERR_FILENO); in DoLaunch()