Searched refs:launch_info (Results 1 - 25 of 39) sorted by relevance

12

/external/lldb/tools/lldb-perf/lib/
H A DTestCase.h38 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);
H A DTestCase.cpp106 TestCase::Launch (lldb::SBLaunchInfo &launch_info) argument
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/
H A DPlatform.cpp637 Platform::LaunchProcess (ProcessLaunchInfo &launch_info) argument
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, argument
675 launch_info.GetFlags ().Set (eLaunchFlagDebug);
679 launch_info.SetLaunchInSeparateProcessGroup(true);
681 error = LaunchProcess (launch_info);
[all...]
/external/lldb/examples/python/
H A Dprocess_events.py103 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:
H A Dperformance.py134 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/
H A DPlatformRemoteGDBServer.cpp298 PlatformRemoteGDBServer::LaunchProcess (ProcessLaunchInfo &launch_info) argument
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);
H A DPlatformRemoteGDBServer.h89 LaunchProcess (lldb_private::ProcessLaunchInfo &launch_info);
/external/lldb/source/Plugins/Platform/Linux/
H A DPlatformLinux.h90 LaunchProcess (lldb_private::ProcessLaunchInfo &launch_info);
H A DPlatformLinux.cpp402 PlatformLinux::LaunchProcess (ProcessLaunchInfo &launch_info) argument
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/
H A DCommandObjectPlatform.cpp412 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...]
H A DCommandObjectProcess.cpp214 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
[all...]
/external/lldb/source/Host/common/
H A DHost.cpp1377 ProcessLaunchInfo launch_info; local
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
[all...]
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp517 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);
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIX.cpp203 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(),
202 DoLaunch(Module *module, const ProcessLaunchInfo &launch_info) argument
H A DProcessPOSIX.h61 const lldb_private::ProcessLaunchInfo &launch_info);
/external/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.h124 LaunchProcess (lldb_private::ProcessLaunchInfo &launch_info);
H A DPlatformFreeBSD.cpp464 PlatformFreeBSD::LaunchProcess (ProcessLaunchInfo &launch_info) argument
469 error = Platform::LaunchProcess (launch_info);
474 error = m_remote_platform_sp->LaunchProcess (launch_info);
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.h99 LaunchProcess (lldb_private::ProcessLaunchInfo &launch_info);
/external/lldb/tools/lldb-perf/common/clang/
H A Dlldb_perf_clang.cpp142 SBLaunchInfo launch_info(clang_argv);
143 Launch (launch_info);
/external/lldb/tools/lldb-perf/common/stepping/
H A Dlldb-perf-stepping.cpp62 SBLaunchInfo launch_info (args);
64 return Launch (launch_info);
/external/lldb/tools/lldb-perf/darwin/formatters/
H A Dformatters.cpp80 SBLaunchInfo launch_info(argv);
81 return Launch (launch_info);
/external/lldb/tools/lldb-perf/darwin/sketch/
H A Dsketch.cpp174 lldb::SBLaunchInfo launch_info = GetLaunchInfo(); local
179 return Launch (launch_info);
/external/lldb/include/lldb/Host/
H A DHost.h452 LaunchProcess (ProcessLaunchInfo &launch_info);
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.h152 lldb_private::ProcessLaunchInfo &launch_info);
H A DProcessKDP.h88 const lldb_private::ProcessLaunchInfo &launch_info);

Completed in 249 milliseconds

12