Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/include/lldb/Host/
H A DProcessLaunchInfo.h61 const FileAction *GetFileActionForFD(int fd) const;
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp3516 if (info.GetFileActionForFD(STDIN_FILENO) == nullptr || in FinalizeFileActions()
3517 info.GetFileActionForFD(STDOUT_FILENO) == nullptr || in FinalizeFileActions()
3518 info.GetFileActionForFD(STDERR_FILENO) == nullptr) { in FinalizeFileActions()
3543 if (info.GetFileActionForFD(STDIN_FILENO) == nullptr) in FinalizeFileActions()
3545 if (info.GetFileActionForFD(STDOUT_FILENO) == nullptr) in FinalizeFileActions()
3547 if (info.GetFileActionForFD(STDERR_FILENO) == nullptr) in FinalizeFileActions()
4799 launch_info.GetFileActionForFD(STDIN_FILENO); in SetProcessLaunchInfo()
4804 launch_info.GetFileActionForFD(STDOUT_FILENO); in SetProcessLaunchInfo()
4809 launch_info.GetFileActionForFD(STDERR_FILENO); in SetProcessLaunchInfo()
/freebsd-14.2/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.cpp629 file_action = launch_info.GetFileActionForFD(STDIN_FILENO); in DoLaunch()
634 file_action = launch_info.GetFileActionForFD(STDOUT_FILENO); in DoLaunch()
639 file_action = launch_info.GetFileActionForFD(STDERR_FILENO); in DoLaunch()