| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBLaunchInfo.cpp | 47 m_opaque_sp->GetArguments().SetArguments(argv); in SBLaunchInfo() 143 return m_opaque_sp->GetArguments().GetArgumentCount(); in GetNumArguments() 149 return m_opaque_sp->GetArguments().GetArgumentAtIndex(idx); in GetArgumentAtIndex() 157 m_opaque_sp->GetArguments().AppendArguments(argv); in SetArguments() 160 m_opaque_sp->GetArguments().SetArguments(argv); in SetArguments() 162 m_opaque_sp->GetArguments().Clear(); in SetArguments()
|
| H A D | SBTarget.cpp | 357 launch_info.GetArguments().AppendArguments(argv); in Launch() 360 launch_info.GetArguments().AppendArguments( in Launch() 361 default_launch_info.GetArguments()); in Launch()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/QemuUser/ |
| H A D | PlatformQemuUser.cpp | 187 for (size_t i = 1; i < launch_info.GetArguments().size(); ++i) in DebugProcess() 188 args.AppendArgument(launch_info.GetArguments()[i].ref()); in DebugProcess() 190 LLDB_LOG(log, "{0} -> {1}", get_arg_range(launch_info.GetArguments()), in DebugProcess()
|
| /llvm-project-15.0.7/lldb/source/Host/windows/ |
| H A D | Host.cpp | 218 launch_info.GetArguments().GetQuotedCommandString(quoted_cmd_string); in ShellExpandArguments() 265 launch_info.GetArguments().Clear(); in ShellExpandArguments() 275 launch_info.GetArguments().AppendArgument(str_sp->GetValue()); in ShellExpandArguments()
|
| H A D | ProcessLauncherWindows.cpp | 105 GetFlattenedWindowsCommandString(launch_info.GetArguments(), wcommandLine); in LaunchProcess()
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | ProcessInfo.h | 75 Args &GetArguments() { return m_arguments; } in GetArguments() function 77 const Args &GetArguments() const { return m_arguments; } in GetArguments() function
|
| /llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | CPlusPlusLanguage.h | 55 llvm::StringRef GetArguments();
|
| H A D | CPlusPlusLanguage.cpp | 246 llvm::StringRef CPlusPlusLanguage::MethodName::GetArguments() { in GetArguments() function in CPlusPlusLanguage::MethodName 546 if (alternate_cpp_name.GetArguments() == cpp_name.GetArguments()) { in FindBestAlternateFunctionMangledName()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerPlatform.cpp | 527 if (!m_process_launch_info.GetArguments().GetArgumentCount()) in LaunchProcess() 541 m_process_launch_info.GetArguments().GetArgumentAtIndex(0)); in LaunchProcess() 546 m_process_launch_info.GetArguments().GetArgumentAtIndex(0), in LaunchProcess()
|
| H A D | GDBRemoteCommunicationServerCommon.cpp | 1068 m_process_launch_info.GetArguments().AppendArgument(arg); in Handle_A() 1221 for (auto &arg : proc_info.GetArguments()) { in CreateProcessInfoResponse()
|
| H A D | GDBRemoteCommunicationServerLLGS.cpp | 266 if (!m_process_launch_info.GetArguments().GetArgumentCount()) in LaunchProcess() 341 m_process_launch_info.GetArguments().GetArgumentAtIndex(0), in LaunchProcess() 3508 m_process_launch_info.GetArguments().AppendArgument(arg); in Handle_vRun() 3515 m_process_launch_info.GetArguments()[0].ref(), FileSpec::Style::native); in Handle_vRun()
|
| H A D | GDBRemoteCommunication.cpp | 971 Args &debugserver_args = launch_info.GetArguments(); in StartDebugserverProcess()
|
| /llvm-project-15.0.7/lldb/unittests/Language/CPlusPlus/ |
| H A D | CPlusPlusLanguageTest.cpp | 119 EXPECT_EQ(test.arguments, method.GetArguments().str()); in TEST()
|
| /llvm-project-15.0.7/lldb/source/Host/openbsd/ |
| H A D | Host.cpp | 83 Args &proc_args = process_info.GetArguments(); in GetOpenBSDProcessArgs()
|
| /llvm-project-15.0.7/lldb/source/Host/freebsd/ |
| H A D | Host.cpp | 87 Args &proc_args = process_info.GetArguments(); in GetFreeBSDProcessArgs()
|
| /llvm-project-15.0.7/lldb/source/Host/macosx/objcxx/ |
| H A D | Host.mm | 264 const char **argv = launch_info.GetArguments().GetConstArgumentVector(); 555 Args &proc_args = process_info.GetArguments(); 939 launch_info.GetArguments()); 1188 launch_info.GetArguments().GetConstArgumentVector()); 1381 expand_command.AppendArguments(launch_info.GetArguments()); 1437 launch_info.GetArguments().Clear(); 1447 launch_info.GetArguments().AppendArgument(str_sp->GetValue());
|
| /llvm-project-15.0.7/lldb/source/Host/netbsd/ |
| H A D | HostNetBSD.cpp | 84 Args &proc_args = process_info.GetArguments(); in GetNetBSDProcessArgs()
|
| /llvm-project-15.0.7/lldb/source/Host/posix/ |
| H A D | ProcessLauncherPosixFork.cpp | 253 argv(info.GetArguments().GetConstArgumentVector()), in ForkLaunchInfo()
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectProcess.cpp | 230 m_options.launch_info.GetArguments().AppendArgument( in DoExecute() 246 m_options.launch_info.GetArguments().AppendArguments( in DoExecute() 247 target->GetProcessLaunchInfo().GetArguments()); in DoExecute() 249 m_options.launch_info.GetArguments().AppendArguments(launch_args); in DoExecute()
|
| H A D | CommandObjectPlatform.cpp | 1178 m_options.launch_info.GetArguments().AppendArgument(exe_path); in DoExecute() 1186 m_options.launch_info.GetArguments().AppendArguments(args); in DoExecute() 1199 target->GetRunArguments(m_options.launch_info.GetArguments()); in DoExecute()
|
| /llvm-project-15.0.7/lldb/source/Host/linux/ |
| H A D | Host.cpp | 165 process_info.GetArguments().AppendArgument(Arg); in GetProcessArgs()
|
| /llvm-project-15.0.7/lldb/source/Host/common/ |
| H A D | ProcessLaunchInfo.cpp | 247 const char **argv = GetArguments().GetConstArgumentVector(); in ConvertArgumentsForLaunchingInShell()
|
| H A D | Host.cpp | 424 launch_info.GetArguments().AppendArguments(args); in RunShellCommand()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/objcxx/ |
| H A D | PlatformiOSSimulatorCoreSimulatorSupport.mm | 472 if (launch_info.GetArguments().GetArgumentCount()) { 473 const Args &args(launch_info.GetArguments());
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | IOHandlerCursesGUI.cpp | 2025 Args GetArguments() { in GetArguments() function in curses::ArgumentsFieldDelegate 3350 target->GetProcessLaunchInfo().GetArguments(); in SetArgumentsFieldDefaultValue() 3416 launch_info.GetArguments().AppendArgument(target_settings_argv0); in GetExecutableSettings() 3426 void GetArguments(ProcessLaunchInfo &launch_info) { in GetArguments() function in curses::ProcessLaunchFormDelegate 3428 Args arguments = m_arguments_field->GetArguments(); in GetArguments() 3429 launch_info.GetArguments().AppendArguments(arguments); in GetArguments() 3527 GetArguments(launch_info); in GetLaunchInfo()
|