Lines Matching refs:stderr_path
609 const char *stderr_path = NULL; in DoLaunch() local
629 stderr_path = file_action->GetPath(); in DoLaunch()
672 if (stdin_path == NULL || stdout_path == NULL || stderr_path == NULL) in DoLaunch()
683 if (stderr_path == NULL) in DoLaunch()
684 stderr_path = slave_name; in DoLaunch()
689 if (disable_stdio || (stdin_path == NULL && (stdout_path || stderr_path))) 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()
700 stderr_path = "/dev/null"; in DoLaunch()
706 if (stderr_path) in DoLaunch()
707 m_gdb_comm.SetSTDERR (stderr_path); in DoLaunch()