Home
last modified time | relevance | path

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

/external/llvm-project/lldb/unittests/Host/
DProcessLaunchInfoTest.cpp20 Info.GetFileActionForFD(STDIN_FILENO)->GetFileSpec()); in TEST()
22 Info.GetFileActionForFD(STDOUT_FILENO)->GetFileSpec()); in TEST()
24 Info.GetFileActionForFD(STDERR_FILENO)->GetFileSpec()); in TEST()
/external/llvm-project/lldb/source/Host/common/
DProcessLaunchInfo.cpp115 const FileAction *ProcessLaunchInfo::GetFileActionForFD(int fd) const { in GetFileActionForFD() function in ProcessLaunchInfo
228 if (GetFileActionForFD(STDIN_FILENO) == nullptr) in SetUpPtyRedirection()
233 if (GetFileActionForFD(STDOUT_FILENO) == nullptr) in SetUpPtyRedirection()
238 if (GetFileActionForFD(STDERR_FILENO) == nullptr) in SetUpPtyRedirection()
/external/llvm-project/lldb/include/lldb/Host/
DProcessLaunchInfo.h61 const FileAction *GetFileActionForFD(int fd) const;
/external/llvm-project/lldb/source/Host/posix/
DProcessLauncherPosixFork.cpp147 if (!info.GetFileActionForFD(fd) && fd != error_fd) in ChildFunc()
/external/llvm-project/lldb/source/Host/windows/
DProcessLauncherWindows.cpp152 const FileAction *action = launch_info.GetFileActionForFD(fd); in GetStdioHandle()
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DProcessFreeBSD.cpp386 file_action = launch_info.GetFileActionForFD(STDIN_FILENO); in DoLaunch()
390 file_action = launch_info.GetFileActionForFD(STDOUT_FILENO); in DoLaunch()
394 file_action = launch_info.GetFileActionForFD(STDERR_FILENO); in DoLaunch()
/external/llvm-project/lldb/source/Target/
DTarget.cpp3159 if (info.GetFileActionForFD(STDIN_FILENO) == nullptr || in FinalizeFileActions()
3160 info.GetFileActionForFD(STDOUT_FILENO) == nullptr || in FinalizeFileActions()
3161 info.GetFileActionForFD(STDERR_FILENO) == nullptr) { in FinalizeFileActions()
3186 if (info.GetFileActionForFD(STDIN_FILENO) == nullptr) in FinalizeFileActions()
3188 if (info.GetFileActionForFD(STDOUT_FILENO) == nullptr) in FinalizeFileActions()
3190 if (info.GetFileActionForFD(STDERR_FILENO) == nullptr) in FinalizeFileActions()
4195 launch_info.GetFileActionForFD(STDIN_FILENO); in SetProcessLaunchInfo()
4200 launch_info.GetFileActionForFD(STDOUT_FILENO); in SetProcessLaunchInfo()
4205 launch_info.GetFileActionForFD(STDERR_FILENO); in SetProcessLaunchInfo()
/external/llvm-project/lldb/source/Plugins/Process/Linux/
DNativeProcessLinux.cpp108 if (const FileAction *action = info.GetFileActionForFD(STDIN_FILENO)) in MaybeLogLaunchInfo()
113 if (const FileAction *action = info.GetFileActionForFD(STDOUT_FILENO)) in MaybeLogLaunchInfo()
118 if (const FileAction *action = info.GetFileActionForFD(STDERR_FILENO)) in MaybeLogLaunchInfo()
/external/llvm-project/lldb/source/Host/macosx/objcxx/
DHost.mm921 const FileAction *file_action = launch_info.GetFileActionForFD(STDIN_FILENO);
926 file_action = launch_info.GetFileActionForFD(STDOUT_FILENO);
931 file_action = launch_info.GetFileActionForFD(STDERR_FILENO);
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServerLLGS.cpp221 m_process_launch_info.GetFileActionForFD(STDIN_FILENO) == nullptr || in LaunchProcess()
222 m_process_launch_info.GetFileActionForFD(STDOUT_FILENO) == nullptr || in LaunchProcess()
223 m_process_launch_info.GetFileActionForFD(STDERR_FILENO) == nullptr; in LaunchProcess()
DProcessGDBRemote.cpp750 file_action = launch_info.GetFileActionForFD(STDIN_FILENO); in DoLaunch()
755 file_action = launch_info.GetFileActionForFD(STDOUT_FILENO); in DoLaunch()
760 file_action = launch_info.GetFileActionForFD(STDERR_FILENO); in DoLaunch()
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/objcxx/
DPlatformiOSSimulatorCoreSimulatorSupport.mm388 const FileAction *file_action = launch_info.GetFileActionForFD(fd);