Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Host/common/
DProcessLaunchInfo.cpp37 ProcessLaunchInfo::ProcessLaunchInfo(const FileSpec &stdin_file_spec, in ProcessLaunchInfo() argument
46 if (stdin_file_spec) { in ProcessLaunchInfo()
50 if (file_action.Open(STDIN_FILENO, stdin_file_spec, read, write)) in ProcessLaunchInfo()
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DProcessMonitor.h48 const lldb_private::FileSpec &stdin_file_spec,
218 const lldb_private::FileSpec &stdin_file_spec,
DProcessMonitor.cpp671 const FileSpec &stdin_file_spec, in LaunchArgs() argument
676 m_env(std::move(env)), m_stdin_file_spec(stdin_file_spec), in LaunchArgs()
700 Environment env, const FileSpec &stdin_file_spec, in ProcessMonitor() argument
710 new LaunchArgs(this, module, argv, std::move(env), stdin_file_spec, in ProcessMonitor()
818 const FileSpec &stdin_file_spec = args->m_stdin_file_spec; in Launch() local
868 if (stdin_file_spec) in Launch()
869 if (!DupDescriptor(stdin_file_spec, STDIN_FILENO, O_RDONLY)) in Launch()
DProcessFreeBSD.cpp380 FileSpec stdin_file_spec{}; in DoLaunch() local
387 stdin_file_spec = in DoLaunch()
388 GetFileSpec(file_action, stdin_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.h34 ProcessLaunchInfo(const FileSpec &stdin_file_spec,
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp744 FileSpec stdin_file_spec{}; in DoLaunch() local
753 stdin_file_spec = file_action->GetFileSpec(); in DoLaunch()
767 if (stdin_file_spec || stdout_file_spec || stderr_file_spec) in DoLaunch()
772 stdin_file_spec ? stdin_file_spec.GetCString() : "<null>", in DoLaunch()
782 if (stdin_file_spec || disable_stdio) { in DoLaunch()
806 if (!stdin_file_spec) in DoLaunch()
807 stdin_file_spec.SetFile(FileSystem::DEV_NULL, in DoLaunch()
820 if ((!stdin_file_spec || !stdout_file_spec || !stderr_file_spec) && in DoLaunch()
824 if (!stdin_file_spec) in DoLaunch()
825 stdin_file_spec = secondary_name; in DoLaunch()
[all …]