reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Target/Process.h
  216     launch_info.Clear();
tools/lldb/source/Commands/CommandObjectPlatform.cpp
  974         m_options.launch_info.GetExecutableFile() = exe_module->GetFileSpec();
  976         m_options.launch_info.GetExecutableFile().GetPath(exe_path);
  978           m_options.launch_info.GetArguments().AppendArgument(exe_path);
  979         m_options.launch_info.GetArchitecture() = exe_module->GetArchitecture();
  983         if (m_options.launch_info.GetExecutableFile()) {
  986           m_options.launch_info.GetArguments().AppendArguments(args);
  991           m_options.launch_info.SetArguments(args, first_arg_is_executable);
  995       if (m_options.launch_info.GetExecutableFile()) {
  999           target->GetRunArguments(m_options.launch_info.GetArguments());
 1002             m_options.launch_info, debugger, target, error));
tools/lldb/source/Commands/CommandObjectProcess.cpp
  185       m_options.launch_info.GetFlags().Set(eLaunchFlagDisableASLR);
  187       m_options.launch_info.GetFlags().Clear(eLaunchFlagDisableASLR);
  190       m_options.launch_info.GetFlags().Set(eLaunchFlagDetachOnError);
  193       m_options.launch_info.GetFlags().Set(eLaunchFlagDisableSTDIO);
  197     m_options.launch_info.GetEnvironment().insert(target_env.begin(),
  201       m_options.launch_info.GetArguments().AppendArgument(
  203       m_options.launch_info.SetExecutableFile(
  206       m_options.launch_info.SetExecutableFile(
  211       m_options.launch_info.GetArguments().AppendArguments(
  214       m_options.launch_info.GetArguments().AppendArguments(launch_args);
  220     Status error = target->Launch(m_options.launch_info, &stream);
tools/lldb/source/Target/Process.cpp
  258     launch_info.GetFlags().Set(eLaunchFlagStopAtEntry);
  265       launch_info.AppendFileAction(action);
  273       launch_info.AppendFileAction(action);
  281       launch_info.AppendFileAction(action);
  286     launch_info.SetProcessPluginName(option_arg);
  294       launch_info.AppendFileAction(action);
  296       launch_info.AppendFileAction(action);
  298       launch_info.AppendFileAction(action);
  303     launch_info.SetWorkingDirectory(FileSpec(option_arg));
  307     launch_info.GetFlags().Set(eLaunchFlagLaunchInTTY);
  315     launch_info.GetArchitecture() =
  339       launch_info.SetShellExpandArguments(expand_args);
  349       launch_info.SetShell(FileSpec(option_arg));
  351       launch_info.SetShell(HostInfo::GetDefaultShell());
  355     launch_info.GetEnvironment().insert(option_arg);