Home | History | Annotate | Download | only in common

Lines Matching defs:launch_info

1377     ProcessLaunchInfo launch_info;
1381 launch_info.SetShell(shell);
1382 launch_info.GetArguments().AppendArgument(command);
1386 launch_info.ConvertArgumentsForLaunchingInShell (error,
1396 launch_info.SetArguments(args, first_arg_is_executable);
1400 launch_info.SetWorkingDirectory(working_dir);
1409 launch_info.AppendSuppressFileAction (STDIN_FILENO, true, false);
1410 launch_info.AppendOpenFileAction(STDOUT_FILENO, output_file_path, false, true);
1411 launch_info.AppendDuplicateFileAction(STDOUT_FILENO, STDERR_FILENO);
1415 launch_info.AppendSuppressFileAction (STDIN_FILENO, true, false);
1416 launch_info.AppendSuppressFileAction (STDOUT_FILENO, false, true);
1417 launch_info.AppendSuppressFileAction (STDERR_FILENO, false, true);
1424 launch_info.SetMonitorProcessCallback(MonitorShellCommand, shell_info_ap.get(), monitor_signals);
1426 error = LaunchProcess (launch_info);
1427 const lldb::pid_t pid = launch_info.GetProcessID();