/external/lldb/source/Plugins/Process/FreeBSD/ |
D | ProcessMonitor.h | 54 const char *stdin_path, 230 const char *stdin_path,
|
D | ProcessMonitor.cpp | 659 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/ |
D | ProcessMonitor.h | 54 const char *stdin_path, 222 const char *stdin_path,
|
D | ProcessMonitor.cpp | 891 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/ |
D | MachProcess.cpp | 1652 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()
|
D | MachProcess.h | 53 const char *stdin_path, 68 const char *stdin_path,
|
/external/lldb/source/Plugins/Process/POSIX/ |
D | ProcessPOSIX.cpp | 223 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/ |
D | ProcessGDBRemote.cpp | 607 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/ |
D | SBProcess.h | 100 const char *stdin_path,
|
D | SBTarget.h | 330 const char *stdin_path,
|
/external/lldb/source/API/ |
D | SBProcess.cpp | 138 const char *stdin_path, in RemoteLaunch() argument 152 stdin_path ? stdin_path : "NULL", in RemoteLaunch() 169 ProcessLaunchInfo launch_info (stdin_path, in RemoteLaunch()
|
D | SBTarget.cpp | 588 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/ |
D | DNB.h | 37 const char *stdin_path,
|
D | DNB.cpp | 183 const char *stdin_path, in DNBProcessLaunch() argument 198 stdin_path, in DNBProcessLaunch() 226 stdin_path, in DNBProcessLaunch()
|
D | debugserver.cpp | 163 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/ |
D | SBProcess.i | 126 const char *stdin_path,
|
D | SBTarget.i | 343 const char *stdin_path,
|
/external/lldb/include/lldb/Target/ |
D | Process.h | 532 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()
|