Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp113 const FileAction *ProcessLaunchInfo::GetFileActionForFD(int fd) const { in GetFileActionForFD() function in ProcessLaunchInfo
202 bool stdin_free = GetFileActionForFD(STDIN_FILENO) == nullptr; in SetUpPtyRedirection()
203 bool stdout_free = GetFileActionForFD(STDOUT_FILENO) == nullptr; in SetUpPtyRedirection()
204 bool stderr_free = GetFileActionForFD(STDERR_FILENO) == nullptr; in SetUpPtyRedirection()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DProcessLaunchInfo.h61 const FileAction *GetFileActionForFD(int fd) const;
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp3660 if (info.GetFileActionForFD(STDIN_FILENO) == nullptr || in FinalizeFileActions()
3661 info.GetFileActionForFD(STDOUT_FILENO) == nullptr || in FinalizeFileActions()
3662 info.GetFileActionForFD(STDERR_FILENO) == nullptr) { in FinalizeFileActions()
3687 if (info.GetFileActionForFD(STDIN_FILENO) == nullptr) in FinalizeFileActions()
3689 if (info.GetFileActionForFD(STDOUT_FILENO) == nullptr) in FinalizeFileActions()
3691 if (info.GetFileActionForFD(STDERR_FILENO) == nullptr) in FinalizeFileActions()
5018 launch_info.GetFileActionForFD(STDIN_FILENO); in SetProcessLaunchInfo()
5023 launch_info.GetFileActionForFD(STDOUT_FILENO); in SetProcessLaunchInfo()
5028 launch_info.GetFileActionForFD(STDERR_FILENO); in SetProcessLaunchInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp268 m_process_launch_info.GetFileActionForFD(STDIN_FILENO) == nullptr || in LaunchProcess()
269 m_process_launch_info.GetFileActionForFD(STDOUT_FILENO) == nullptr || in LaunchProcess()
270 m_process_launch_info.GetFileActionForFD(STDERR_FILENO) == nullptr; in LaunchProcess()
H A DProcessGDBRemote.cpp639 file_action = launch_info.GetFileActionForFD(STDIN_FILENO); in DoLaunch()
644 file_action = launch_info.GetFileActionForFD(STDOUT_FILENO); in DoLaunch()
649 file_action = launch_info.GetFileActionForFD(STDERR_FILENO); in DoLaunch()