Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDProcessLaunchInfo.cpp116 ProcessLaunchInfo::AppendOpenFileAction(int fd, const FileSpec &file_spec, in AppendOpenFileAction() function in ProcessLaunchInfo
333 AppendOpenFileAction(STDIN_FILENO, in_file_spec, true, false); in FinalizeFileActions()
341 AppendOpenFileAction(STDOUT_FILENO, out_file_spec, false, true); in FinalizeFileActions()
349 AppendOpenFileAction(STDERR_FILENO, err_file_spec, false, true); in FinalizeFileActions()
376 AppendOpenFileAction(STDIN_FILENO, slave_file_spec, true, false); in FinalizeFileActions()
383 AppendOpenFileAction(STDOUT_FILENO, slave_file_spec, false, true); in FinalizeFileActions()
390 AppendOpenFileAction(STDERR_FILENO, slave_file_spec, false, true); in FinalizeFileActions()
HDTarget.cpp3629 …this_->m_launch_info.AppendOpenFileAction(STDIN_FILENO, this_->GetStandardInputPath(), true, false… in InputPathValueChangedCallback()
3636 …this_->m_launch_info.AppendOpenFileAction(STDOUT_FILENO, this_->GetStandardOutputPath(), false, tr… in OutputPathValueChangedCallback()
3643 …this_->m_launch_info.AppendOpenFileAction(STDERR_FILENO, this_->GetStandardErrorPath(), false, tru… in ErrorPathValueChangedCallback()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Target/
HDProcessLaunchInfo.h58 AppendOpenFileAction(int fd, const FileSpec &file_spec,
/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBLaunchInfo.cpp263 return m_opaque_sp->AppendOpenFileAction(fd, FileSpec{path, false}, read, write); in AddOpenFileAction()
/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDHost.cpp606 launch_info.AppendOpenFileAction(STDOUT_FILENO, output_file_spec, false, true); in RunShellCommand()