Home
last modified time | relevance | path

Searched refs:AddOpenFileAction (Results 1 – 4 of 4) sorted by relevance

/llvm-project/lldb/test/API/python_api/process/io/
H A DTestProcessIO.py46 """Exercise SBLaunchInfo::AddOpenFileAction() for STDIN without specifying STDOUT or STDERR."""
59 """Exercise SBLaunchInfo::AddOpenFileAction() for STDOUT without specifying STDIN or STDERR."""
73 """Exercise SBLaunchInfo::AddOpenFileAction() for STDERR without specifying STDIN or STDOUT."""
87 """Exercise SBLaunchInfo::AddOpenFileAction() for STDOUT and STDERR without redirecting STDIN."""
102 """Exercise SBLaunchInfo::AddOpenFileAction() for STDOUT and STDERR redirect to output files already exist."""
199 self.launch_info.AddOpenFileAction(0, self.input_file, True, False)
203 self.launch_info.AddOpenFileAction(1, self.output_file, False, True)
207 self.launch_info.AddOpenFileAction(2, self.error_file, False, True)
/llvm-project/lldb/test/API/qemu/
H A DTestQemuLaunch.py142 info.AddOpenFileAction(0, self.getBuildArtifact("stdin.txt"), True, False)
143 info.AddOpenFileAction(1, self.getBuildArtifact("stdout.txt"), False, True)
144 info.AddOpenFileAction(2, self.getBuildArtifact("stderr.txt"), False, True)
/llvm-project/lldb/include/lldb/API/
H A DSBLaunchInfo.h189 bool AddOpenFileAction(int fd, const char *path, bool read, bool write);
/llvm-project/lldb/source/API/
H A DSBLaunchInfo.cpp297 bool SBLaunchInfo::AddOpenFileAction(int fd, const char *path, bool read, in AddOpenFileAction() function in SBLaunchInfo