Lines Matching refs:stdout_path
608 const char *stdout_path = NULL; in DoLaunch() local
623 stdout_path = file_action->GetPath(); in DoLaunch()
672 if (stdin_path == NULL || stdout_path == NULL || stderr_path == NULL) in DoLaunch()
680 if (stdout_path == NULL) in DoLaunch()
681 stdout_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()
695 stdout_path = "/dev/null"; in DoLaunch()
699 if (disable_stdio || (stderr_path == NULL && (stdin_path || stdout_path))) in DoLaunch()
704 if (stdout_path) in DoLaunch()
705 m_gdb_comm.SetSTDOUT (stdout_path); in DoLaunch()