Home
last modified time | relevance | path

Searched refs:stdout_file_spec (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/lldb/source/Host/common/
DProcessLaunchInfo.cpp38 const FileSpec &stdout_file_spec, in ProcessLaunchInfo() argument
53 if (stdout_file_spec) { in ProcessLaunchInfo()
57 if (file_action.Open(STDOUT_FILENO, stdout_file_spec, read, write)) in ProcessLaunchInfo()
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DProcessMonitor.h49 const lldb_private::FileSpec &stdout_file_spec,
219 const lldb_private::FileSpec &stdout_file_spec,
DProcessMonitor.cpp672 const FileSpec &stdout_file_spec, in LaunchArgs() argument
677 m_stdout_file_spec(stdout_file_spec), in LaunchArgs()
701 const FileSpec &stdout_file_spec, const FileSpec &stderr_file_spec, in ProcessMonitor() argument
711 stdout_file_spec, stderr_file_spec, working_dir)); in ProcessMonitor()
819 const FileSpec &stdout_file_spec = args->m_stdout_file_spec; in Launch() local
872 if (stdout_file_spec) in Launch()
873 if (!DupDescriptor(stdout_file_spec, STDOUT_FILENO, O_WRONLY | O_CREAT)) in Launch()
DProcessFreeBSD.cpp381 FileSpec stdout_file_spec{}; in DoLaunch() local
391 stdout_file_spec = in DoLaunch()
392 GetFileSpec(file_action, stdout_file_spec, dbg_pts_file_spec); in DoLaunch()
400 launch_info.GetEnvironment(), stdin_file_spec, stdout_file_spec, in DoLaunch()
/external/llvm-project/lldb/include/lldb/Host/
DProcessLaunchInfo.h35 const FileSpec &stdout_file_spec,
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp745 FileSpec stdout_file_spec{}; in DoLaunch() local
758 stdout_file_spec = file_action->GetFileSpec(); in DoLaunch()
767 if (stdin_file_spec || stdout_file_spec || stderr_file_spec) in DoLaunch()
773 stdout_file_spec ? stdout_file_spec.GetCString() : "<null>", in DoLaunch()
809 if (!stdout_file_spec) in DoLaunch()
810 stdout_file_spec.SetFile(FileSystem::DEV_NULL, in DoLaunch()
820 if ((!stdin_file_spec || !stdout_file_spec || !stderr_file_spec) && in DoLaunch()
827 if (!stdout_file_spec) in DoLaunch()
828 stdout_file_spec = secondary_name; in DoLaunch()
840 stdout_file_spec ? stdout_file_spec.GetCString() : "<null>", in DoLaunch()
[all …]