Home
last modified time | relevance | path

Searched refs:stdin_path (Results 1 – 18 of 18) sorted by relevance

/external/lldb/source/Plugins/Process/FreeBSD/
DProcessMonitor.h54 const char *stdin_path,
230 const char *stdin_path,
DProcessMonitor.cpp659 const char *stdin_path, in LaunchArgs() argument
667 m_stdin_path(stdin_path), in LaunchArgs()
698 const char *stdin_path, in ProcessMonitor() argument
715 stdin_path, stdout_path, stderr_path, working_dir)); in ProcessMonitor()
861 const char *stdin_path = args->m_stdin_path; in Launch() local
920 if (stdin_path != NULL && stdin_path[0]) in Launch()
921 if (!DupDescriptor(stdin_path, STDIN_FILENO, O_RDONLY)) in Launch()
/external/lldb/source/Plugins/Process/Linux/
DProcessMonitor.h54 const char *stdin_path,
222 const char *stdin_path,
DProcessMonitor.cpp891 const char *stdin_path, in LaunchArgs() argument
899 m_stdin_path(stdin_path), in LaunchArgs()
930 const char *stdin_path, in ProcessMonitor() argument
946 stdin_path, stdout_path, stderr_path, working_dir)); in ProcessMonitor()
1090 const char *stdin_path = args->m_stdin_path; in Launch() local
1149 if (stdin_path != NULL && stdin_path[0]) in Launch()
1150 if (!DupDescriptor(stdin_path, STDIN_FILENO, O_RDONLY)) in Launch()
/external/lldb/tools/debugserver/source/MacOSX/
DMachProcess.cpp1652 const char *stdin_path, in LaunchForDebug() argument
1715 stdin_path, in LaunchForDebug()
1794 const char *stdin_path, in PosixSpawnChildForPTraceDebugging() argument
1811 stdin_path, in PosixSpawnChildForPTraceDebugging()
1872 if (stdin_path == NULL && stdout_path == NULL && stderr_path == NULL && !no_stdio) in PosixSpawnChildForPTraceDebugging()
1877 stdin_path = stdout_path = stderr_path = pty.SlaveName(); in PosixSpawnChildForPTraceDebugging()
1882 if (no_stdio || stdin_path == NULL || stdin_path[0] == '\0') in PosixSpawnChildForPTraceDebugging()
1883 stdin_path = "/dev/null"; in PosixSpawnChildForPTraceDebugging()
1891 stdin_path, in PosixSpawnChildForPTraceDebugging()
1896 …"::posix_spawn_file_actions_addopen (&file_actions, filedes=STDIN_FILENO, path='%s')", stdin_path); in PosixSpawnChildForPTraceDebugging()
DMachProcess.h53 const char *stdin_path,
68 const char *stdin_path,
/external/lldb/source/Plugins/Process/POSIX/
DProcessPOSIX.cpp223 const char *stdin_path = NULL; in DoLaunch() local
228 stdin_path = GetFilePath(file_action, stdin_path); in DoLaunch()
240 stdin_path, in DoLaunch()
/external/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp607 const char *stdin_path = NULL; in DoLaunch() local
617 stdin_path = file_action->GetPath(); in DoLaunch()
672 if (stdin_path == NULL || stdout_path == NULL || stderr_path == NULL) in DoLaunch()
677 if (stdin_path == NULL) in DoLaunch()
678 stdin_path = slave_name; in DoLaunch()
689 if (disable_stdio || (stdin_path == NULL && (stdout_path || stderr_path))) in DoLaunch()
690 stdin_path = "/dev/null"; in DoLaunch()
694 if (disable_stdio || (stdout_path == NULL && (stdin_path || stderr_path))) in DoLaunch()
699 if (disable_stdio || (stderr_path == NULL && (stdin_path || stdout_path))) in DoLaunch()
702 if (stdin_path) in DoLaunch()
[all …]
/external/lldb/include/lldb/API/
DSBProcess.h100 const char *stdin_path,
DSBTarget.h330 const char *stdin_path,
/external/lldb/source/API/
DSBProcess.cpp138 const char *stdin_path, in RemoteLaunch() argument
152 stdin_path ? stdin_path : "NULL", in RemoteLaunch()
169 ProcessLaunchInfo launch_info (stdin_path, in RemoteLaunch()
DSBTarget.cpp588 char *stdin_path = NULL; in LaunchSimple() local
598 stdin_path, in LaunchSimple()
613 const char *stdin_path, in Launch() argument
634 stdin_path ? stdin_path : "NULL", in Launch()
691 …ProcessLaunchInfo launch_info (stdin_path, stdout_path, stderr_path, working_directory, launch_fla… in Launch()
/external/lldb/tools/debugserver/source/
DDNB.h37 const char *stdin_path,
DDNB.cpp183 const char *stdin_path, in DNBProcessLaunch() argument
198 stdin_path, in DNBProcessLaunch()
226 stdin_path, in DNBProcessLaunch()
Ddebugserver.cpp163 RNBRunLoopLaunchInferior (RNBRemote *remote, const char *stdin_path, const char *stdout_path, const… in RNBRunLoopLaunchInferior() argument
223 stdin_path, in RNBRunLoopLaunchInferior()
/external/lldb/scripts/Python/interface/
DSBProcess.i126 const char *stdin_path,
DSBTarget.i343 const char *stdin_path,
/external/lldb/include/lldb/Target/
DProcess.h532 ProcessLaunchInfo (const char *stdin_path, in ProcessLaunchInfo() argument
549 if (stdin_path) in ProcessLaunchInfo()
554 if (file_action.Open(STDIN_FILENO, stdin_path, read, write)) in ProcessLaunchInfo()