Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DProcessLaunchInfo.cpp115 const FileAction *ProcessLaunchInfo::GetFileActionForFD(int fd) const { in GetFileActionForFD() function in ProcessLaunchInfo
206 bool stdin_free = GetFileActionForFD(STDIN_FILENO) == nullptr; in SetUpPtyRedirection()
207 bool stdout_free = GetFileActionForFD(STDOUT_FILENO) == nullptr; in SetUpPtyRedirection()
208 bool stderr_free = GetFileActionForFD(STDERR_FILENO) == nullptr; in SetUpPtyRedirection()
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DProcessLaunchInfo.h62 const FileAction *GetFileActionForFD(int fd) const;
/openbsd-src/gnu/llvm/lldb/source/Host/windows/
H A DProcessLauncherWindows.cpp150 const FileAction *action = launch_info.GetFileActionForFD(fd); in GetStdioHandle()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DTarget.cpp3400 if (info.GetFileActionForFD(STDIN_FILENO) == nullptr || in FinalizeFileActions()
3401 info.GetFileActionForFD(STDOUT_FILENO) == nullptr || in FinalizeFileActions()
3402 info.GetFileActionForFD(STDERR_FILENO) == nullptr) { in FinalizeFileActions()
3427 if (info.GetFileActionForFD(STDIN_FILENO) == nullptr) in FinalizeFileActions()
3429 if (info.GetFileActionForFD(STDOUT_FILENO) == nullptr) in FinalizeFileActions()
3431 if (info.GetFileActionForFD(STDERR_FILENO) == nullptr) in FinalizeFileActions()
4675 launch_info.GetFileActionForFD(STDIN_FILENO); in SetProcessLaunchInfo()
4680 launch_info.GetFileActionForFD(STDOUT_FILENO); in SetProcessLaunchInfo()
4685 launch_info.GetFileActionForFD(STDERR_FILENO); in SetProcessLaunchInfo()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.cpp117 if (const FileAction *action = info.GetFileActionForFD(STDIN_FILENO)) in MaybeLogLaunchInfo()
122 if (const FileAction *action = info.GetFileActionForFD(STDOUT_FILENO)) in MaybeLogLaunchInfo()
127 if (const FileAction *action = info.GetFileActionForFD(STDERR_FILENO)) in MaybeLogLaunchInfo()
/openbsd-src/gnu/llvm/lldb/source/Host/macosx/objcxx/
H A DHost.mm948 const FileAction *file_action = launch_info.GetFileActionForFD(STDIN_FILENO);
953 file_action = launch_info.GetFileActionForFD(STDOUT_FILENO);
958 file_action = launch_info.GetFileActionForFD(STDERR_FILENO);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/objcxx/
H A DPlatformiOSSimulatorCoreSimulatorSupport.mm383 const FileAction *file_action = launch_info.GetFileActionForFD(fd);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp269 m_process_launch_info.GetFileActionForFD(STDIN_FILENO) == nullptr || in LaunchProcess()
270 m_process_launch_info.GetFileActionForFD(STDOUT_FILENO) == nullptr || in LaunchProcess()
271 m_process_launch_info.GetFileActionForFD(STDERR_FILENO) == nullptr; in LaunchProcess()
H A DProcessGDBRemote.cpp623 file_action = launch_info.GetFileActionForFD(STDIN_FILENO); in DoLaunch()
628 file_action = launch_info.GetFileActionForFD(STDOUT_FILENO); in DoLaunch()
633 file_action = launch_info.GetFileActionForFD(STDERR_FILENO); in DoLaunch()