Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/python_api/process/io/
H A DTestProcessIO.py159 self.launch_info.AddOpenFileAction(0, self.input_file, True, False)
163 self.launch_info.AddOpenFileAction(1, self.output_file, False, True)
167 self.launch_info.AddOpenFileAction(2, self.error_file, False, True)
/llvm-project-15.0.7/lldb/test/API/qemu/
H A DTestQemuLaunch.py133 info.AddOpenFileAction(0, self.getBuildArtifact("stdin.txt"),
135 info.AddOpenFileAction(1, self.getBuildArtifact("stdout.txt"),
137 info.AddOpenFileAction(2, self.getBuildArtifact("stderr.txt"),
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBLaunchInfo.i122 AddOpenFileAction (int fd, const char *path, bool read, bool write);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBLaunchInfo.h162 bool AddOpenFileAction(int fd, const char *path, bool read, bool write);
/llvm-project-15.0.7/lldb/source/API/
H A DSBLaunchInfo.cpp294 bool SBLaunchInfo::AddOpenFileAction(int fd, const char *path, bool read, in AddOpenFileAction() function in SBLaunchInfo