HomeSort by relevance Sort by last modified time
    Searched refs:launch_info (Results 1 - 25 of 39) sorted by null

1 2

  /external/lldb/tools/lldb-perf/lib/
TestCase.h 38 lldb::SBLaunchInfo launch_info; member in struct:lldb_perf::TestCase::ActionWanted
43 launch_info (NULL)
73 launch_info = l;
103 Launch (lldb::SBLaunchInfo &launch_info);
TestCase.cpp 106 TestCase::Launch (lldb::SBLaunchInfo &launch_info)
109 m_process = m_target.Launch (launch_info, error);
125 lldb::SBLaunchInfo launch_info((const char**)&args_vect[0]);
126 return Launch(launch_info);
302 Launch(action.launch_info);
  /external/lldb/source/Target/
Platform.cpp 637 Platform::LaunchProcess (ProcessLaunchInfo &launch_info)
645 launch_info.GetFlags().Set (eLaunchFlagLaunchInTTY);
647 if (launch_info.GetFlags().Test (eLaunchFlagLaunchInShell))
650 const bool will_debug = launch_info.GetFlags().Test(eLaunchFlagDebug);
652 if (!launch_info.ConvertArgumentsForLaunchingInShell (error,
659 error = Host::LaunchProcess (launch_info);
667 Platform::DebugProcess (ProcessLaunchInfo &launch_info,
675 launch_info.GetFlags ().Set (eLaunchFlagDebug);
679 launch_info.SetLaunchInSeparateProcessGroup(true);
681 error = LaunchProcess (launch_info);
    [all...]
  /external/lldb/examples/python/
process_events.py 103 launch_info = None
107 launch_info = lldb.SBLaunchInfo (args)
109 launch_info.SetEnvironmentEntries(options.env_vars, True)
111 launch_info.SetWorkingDirectory(options.working_dir)
145 if launch_info and options.breakpoints:
155 if launch_info:
161 process = target.Launch (launch_info, error)
191 if launch_info:
264 if launch_info:
performance.py 134 self.launch_info = None
142 self.launch_info = lldb.SBLaunchInfo(args)
150 self.process = self.target.Launch (self.launch_info, error)
  /external/lldb/source/Plugins/Platform/gdb-server/
PlatformRemoteGDBServer.cpp 298 PlatformRemoteGDBServer::LaunchProcess (ProcessLaunchInfo &launch_info)
306 m_gdb_client.SetDisableASLR (launch_info.GetFlags().Test (eLaunchFlagDisableASLR));
308 const char *working_dir = launch_info.GetWorkingDirectory();
315 const char **argv = launch_info.GetArguments().GetConstArgumentVector();
316 const char **envp = launch_info.GetEnvironmentEntries().GetConstArgumentVector();
337 launch_info.SetProcessID (pid);
PlatformRemoteGDBServer.h 89 LaunchProcess (lldb_private::ProcessLaunchInfo &launch_info);
  /external/lldb/source/Plugins/Platform/Linux/
PlatformLinux.h 90 LaunchProcess (lldb_private::ProcessLaunchInfo &launch_info);
PlatformLinux.cpp 402 PlatformLinux::LaunchProcess (ProcessLaunchInfo &launch_info)
408 if (launch_info.GetFlags().Test (eLaunchFlagLaunchInShell))
411 const bool will_debug = launch_info.GetFlags().Test(eLaunchFlagDebug);
413 if (!launch_info.ConvertArgumentsForLaunchingInShell (error,
419 error = Platform::LaunchProcess (launch_info);
  /external/lldb/source/Commands/
CommandObjectPlatform.cpp 412 m_options.launch_info.GetExecutableFile () = exe_module->GetFileSpec();
414 if (m_options.launch_info.GetExecutableFile ().GetPath (exe_path, sizeof(exe_path)))
415 m_options.launch_info.GetArguments().AppendArgument (exe_path);
416 m_options.launch_info.GetArchitecture() = exe_module->GetArchitecture();
421 if (m_options.launch_info.GetExecutableFile ())
425 m_options.launch_info.GetArguments().AppendArguments (args);
432 m_options.launch_info.SetArguments (args, first_arg_is_executable);
436 if (m_options.launch_info.GetExecutableFile ())
441 target->GetRunArguments(m_options.launch_info.GetArguments());
443 ProcessSP process_sp (platform_sp->DebugProcess (m_options.launch_info,
    [all...]
CommandObjectProcess.cpp 214 m_options.launch_info.GetArguments().AppendArgument (target_settings_argv0);
215 m_options.launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), false);
219 m_options.launch_info.SetExecutableFile(exe_module->GetPlatformFileSpec(), true);
226 m_options.launch_info.GetArguments().AppendArguments (target_setting_args);
230 m_options.launch_info.GetArguments().AppendArguments (launch_args);
237 m_options.launch_info.GetFlags().Set (eLaunchFlagDisableASLR);
240 m_options.launch_info.GetFlags().Set (eLaunchFlagDisableSTDIO);
242 m_options.launch_info.GetFlags().Set (eLaunchFlagDebug);
247 m_options.launch_info.GetEnvironmentEntries ().AppendArguments (environment);
257 m_options.launch_info.FinalizeFileActions (target, default_to_use_pty)
    [all...]
  /external/lldb/source/Host/common/
Host.cpp 1377 ProcessLaunchInfo launch_info; local
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunication.cpp 517 lldb_private::ProcessLaunchInfo &launch_info)
525 launch_info.Clear();
528 FileSpec &debugserver_file_spec = launch_info.GetExecutableFile();
562 Args &debugserver_args = launch_info.GetArguments();
629 // launch_info.AppendCloseFileAction (STDIN_FILENO);
630 // launch_info.AppendCloseFileAction (STDOUT_FILENO);
631 // launch_info.AppendCloseFileAction (STDERR_FILENO);
633 error = Host::LaunchProcess(launch_info);
GDBRemoteCommunication.h 114 lldb_private::ProcessLaunchInfo &launch_info);
  /external/lldb/source/Plugins/Process/POSIX/
ProcessPOSIX.cpp 203 const ProcessLaunchInfo &launch_info)
208 const char* working_dir = launch_info.GetWorkingDirectory();
227 file_action = launch_info.GetFileActionForFD (STDIN_FILENO);
230 file_action = launch_info.GetFileActionForFD (STDOUT_FILENO);
233 file_action = launch_info.GetFileActionForFD (STDERR_FILENO);
238 launch_info.GetArguments().GetConstArgumentVector(),
239 launch_info.GetEnvironmentEntries().GetConstArgumentVector(),
  /external/lldb/source/Plugins/Platform/FreeBSD/
PlatformFreeBSD.h 124 LaunchProcess (lldb_private::ProcessLaunchInfo &launch_info);
PlatformFreeBSD.cpp 464 PlatformFreeBSD::LaunchProcess (ProcessLaunchInfo &launch_info)
469 error = Platform::LaunchProcess (launch_info);
474 error = m_remote_platform_sp->LaunchProcess (launch_info);
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformDarwin.h 99 LaunchProcess (lldb_private::ProcessLaunchInfo &launch_info);
  /external/lldb/tools/lldb-perf/common/clang/
lldb_perf_clang.cpp 142 SBLaunchInfo launch_info(clang_argv);
143 Launch (launch_info);
  /external/lldb/tools/lldb-perf/common/stepping/
lldb-perf-stepping.cpp 62 SBLaunchInfo launch_info (args);
64 return Launch (launch_info);
  /external/lldb/tools/lldb-perf/darwin/formatters/
formatters.cpp 80 SBLaunchInfo launch_info(argv);
81 return Launch (launch_info);
  /external/lldb/tools/lldb-perf/darwin/sketch/
sketch.cpp 174 lldb::SBLaunchInfo launch_info = GetLaunchInfo(); local
179 return Launch (launch_info);
  /external/lldb/include/lldb/Host/
Host.h 452 LaunchProcess (ProcessLaunchInfo &launch_info);
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
CommunicationKDP.h 152 lldb_private::ProcessLaunchInfo &launch_info);
ProcessKDP.h 88 const lldb_private::ProcessLaunchInfo &launch_info);

Completed in 318 milliseconds

1 2