| /llvm-project-15.0.7/lldb/unittests/tools/lldb-server/tests/ |
| H A D | TestClient.cpp | 67 args.AppendArgument(LLDB_SERVER); in launchCustom() 69 args.AppendArgument("gdbserver"); in launchCustom() 70 args.AppendArgument("--reverse-connect"); in launchCustom() 73 args.AppendArgument(("--log-file=" + Log).str()); in launchCustom() 75 args.AppendArgument("--log-channels=gdb-remote packets"); in launchCustom() 77 args.AppendArgument("--log-flags=0x800000"); in launchCustom() 86 args.AppendArgument( in launchCustom() 90 args.AppendArgument(arg); in launchCustom() 93 args.AppendArgument("--"); in launchCustom() 95 args.AppendArgument(arg); in launchCustom()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunication.cpp | 979 debugserver_args.AppendArgument(llvm::StringRef("gdbserver")); in StartDebugserverProcess() 984 debugserver_args.AppendArgument(llvm::StringRef(url)); in StartDebugserverProcess() 989 debugserver_args.AppendArgument(fd_arg.GetString()); in StartDebugserverProcess() 999 debugserver_args.AppendArgument(llvm::StringRef("--setsid")); in StartDebugserverProcess() 1030 debugserver_args.AppendArgument(named_pipe_path); in StartDebugserverProcess() 1043 debugserver_args.AppendArgument(llvm::StringRef("--pipe")); in StartDebugserverProcess() 1044 debugserver_args.AppendArgument(llvm::to_string(write)); in StartDebugserverProcess() 1086 debugserver_args.AppendArgument( in StartDebugserverProcess() 1094 debugserver_args.AppendArgument( in StartDebugserverProcess() 1101 debugserver_args.AppendArgument( in StartDebugserverProcess() [all …]
|
| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | BreakpointIDList.cpp | 181 new_args.AppendArgument(canonical_id_str.GetString()); in FindAndReplaceIDRanges() 188 new_args.AppendArgument(current_arg); in FindAndReplaceIDRanges() 269 new_args.AppendArgument(canonical_id_str.GetString()); in FindAndReplaceIDRanges() 280 new_args.AppendArgument(canonical_id_str.GetString()); in FindAndReplaceIDRanges() 287 new_args.AppendArgument(canonical_id_str.GetString()); in FindAndReplaceIDRanges() 314 new_args.AppendArgument(canonical_id_str.GetString()); in FindAndReplaceIDRanges()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/QemuUser/ |
| H A D | PlatformQemuUser.cpp | 181 args.AppendArgument("-0"); in DebugProcess() 182 args.AppendArgument(launch_info.GetArg0()); in DebugProcess() 185 args.AppendArgument("--"); in DebugProcess() 186 args.AppendArgument(launch_info.GetExecutableFile().GetPath()); in DebugProcess() 188 args.AppendArgument(launch_info.GetArguments()[i].ref()); in DebugProcess()
|
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | ArgsTest.cpp | 92 args.AppendArgument(llvm::StringRef("second_arg")); in TEST() 100 args.AppendArgument("1"); in TEST() 101 args.AppendArgument("2"); in TEST() 102 args.AppendArgument("3"); in TEST() 118 args.AppendArgument("1"); in TEST() 122 args.AppendArgument("2"); in TEST() 127 args.AppendArgument("3"); in TEST()
|
| /llvm-project-15.0.7/lldb/source/Host/common/ |
| H A D | ProcessLaunchInfo.cpp | 251 shell_arguments.AppendArgument(shell_executable); in ConvertArgumentsForLaunchingInShell() 255 shell_arguments.AppendArgument(llvm::StringRef("/C")); in ConvertArgumentsForLaunchingInShell() 257 shell_arguments.AppendArgument(llvm::StringRef("-c")); in ConvertArgumentsForLaunchingInShell() 333 shell_arguments.AppendArgument(shell_command.GetString()); in ConvertArgumentsForLaunchingInShell()
|
| /llvm-project-15.0.7/lldb/source/Interpreter/ |
| H A D | OptionValueArgs.cpp | 21 args.AppendArgument(string_value); in GetArgs()
|
| H A D | OptionValueArray.cpp | 152 args.AppendArgument(string_value); in GetArgs()
|
| H A D | CommandInterpreter.cpp | 2169 new_args.AppendArgument(value); in BuildAliasCommandArgs() 2175 new_args.AppendArgument(option); in BuildAliasCommandArgs() 2184 new_args.AppendArgument(value); in BuildAliasCommandArgs() 2186 new_args.AppendArgument(option + value); in BuildAliasCommandArgs() 2205 new_args.AppendArgument(cmd_args.GetArgumentAtIndex(index)); in BuildAliasCommandArgs() 2207 new_args.AppendArgument(option + cmd_args.GetArgumentAtIndex(index)); in BuildAliasCommandArgs() 2215 new_args.AppendArgument(entry.value().ref()); in BuildAliasCommandArgs()
|
| H A D | OptionValueDictionary.cpp | 93 args.AppendArgument(strm.GetString()); in GetArgs()
|
| /llvm-project-15.0.7/lldb/source/Host/macosx/objcxx/ |
| H A D | HostInfoMacOSX.mm | 378 args.AppendArgument("/usr/bin/env"); 379 args.AppendArgument("DEVELOPER_DIR=" + developer_dir.str()); 381 args.AppendArgument("/usr/bin/xcrun"); 382 args.AppendArgument("--show-sdk-path"); 383 args.AppendArgument("--sdk"); 384 args.AppendArgument(sdk);
|
| H A D | Host.mm | 559 proc_args.AppendArgument(llvm::StringRef(cstr)); 1447 launch_info.GetArguments().AppendArgument(str_sp->GetValue());
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | Args.cpp | 175 AppendArgument(arg); in Args() 180 AppendArgument(arg); in Args() 318 void Args::AppendArgument(llvm::StringRef arg_str, char quote_char) { in AppendArgument() function in Args
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | CompletionRequest.h | 151 m_parsed_line.AppendArgument(llvm::StringRef()); in AppendEmptyArgument()
|
| H A D | Args.h | 182 void AppendArgument(llvm::StringRef arg_str, char quote_char = '\0');
|
| /llvm-project-15.0.7/lldb/source/Host/openbsd/ |
| H A D | Host.cpp | 95 proc_args.AppendArgument(llvm::StringRef(cstr)); in GetOpenBSDProcessArgs()
|
| /llvm-project-15.0.7/lldb/source/Host/freebsd/ |
| H A D | Host.cpp | 101 proc_args.AppendArgument(llvm::StringRef(cstr)); in GetFreeBSDProcessArgs()
|
| /llvm-project-15.0.7/lldb/source/Host/netbsd/ |
| H A D | HostNetBSD.cpp | 98 proc_args.AppendArgument(llvm::StringRef(cstr)); in GetNetBSDProcessArgs()
|
| /llvm-project-15.0.7/lldb/source/Host/windows/ |
| H A D | Host.cpp | 275 launch_info.GetArguments().AppendArgument(str_sp->GetValue()); in ShellExpandArguments()
|
| /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/API/ |
| H A D | SBPlatform.cpp | 382 args.AppendArgument(connect_options.GetURL()); in ConnectRemote()
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectProcess.cpp | 230 m_options.launch_info.GetArguments().AppendArgument( in DoExecute() 530 m_run_to_bkpt_args.AppendArgument(option_arg); in SetOptionValue()
|
| H A D | CommandObjectThread.cpp | 170 copy_args.AppendArgument(start_opt); in GetRepeatCommand() 171 copy_args.AppendArgument(new_start_val); in GetRepeatCommand()
|
| H A D | CommandObjectBreakpoint.cpp | 417 m_exception_extra_args.AppendArgument("-O"); in SetOptionValue() 418 m_exception_extra_args.AppendArgument(option_arg); in SetOptionValue()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/ |
| H A D | PlatformDarwin.cpp | 182 ret_args.AppendArgument(packet); in GetExtraStartupCommands()
|