| /freebsd/contrib/llvm-project/lldb/source/Utility/ |
| H A D | ProcessInfo.cpp | 25 : m_executable(), m_arguments(), m_environment(), m_arch(), m_listener_sp(), in ProcessInfo() 30 : m_executable(name), m_arguments(), m_environment(), m_arch(arch), in ProcessInfo() 36 m_arguments.Clear(); in Clear() 60 m_arguments.Dump(s); in Dump() 73 m_arguments.InsertArgumentAtIndex(0, filename); in SetExecutableFile() 86 m_arguments.SetArguments(argv); in SetArguments() 90 const char *first_arg = m_arguments.GetArgumentAtIndex(0); in SetArguments() 102 m_arguments = args; in SetArguments() 106 const char *first_arg = m_arguments.GetArgumentAtIndex(0); in SetArguments() 133 const uint32_t argc = m_arguments.GetArgumentCount(); in Dump() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectSettings.cpp | 54 m_arguments.push_back(arg1); in CommandObjectSettingsSet() 55 m_arguments.push_back(arg2); in CommandObjectSettingsSet() 467 m_arguments.push_back(arg); in CommandObjectSettingsList() 545 m_arguments.push_back(arg1); in CommandObjectSettingsRemove() 546 m_arguments.push_back(arg2); in CommandObjectSettingsRemove() 646 m_arguments.push_back(arg1); in CommandObjectSettingsReplace() 647 m_arguments.push_back(arg2); in CommandObjectSettingsReplace() 648 m_arguments.push_back(arg3); in CommandObjectSettingsReplace() 735 m_arguments.push_back(arg1); in CommandObjectSettingsInsertBefore() 736 m_arguments.push_back(arg2); in CommandObjectSettingsInsertBefore() [all …]
|
| H A D | CommandObjectMemoryTag.cpp | 35 m_arguments.push_back( in CommandObjectMemoryTagRead() 38 m_arguments.push_back(CommandArgumentEntry{ in CommandObjectMemoryTagRead() 182 m_arguments.push_back( in CommandObjectMemoryTagWrite() 185 m_arguments.push_back(CommandArgumentEntry{ in CommandObjectMemoryTagWrite()
|
| H A D | CommandObjectLog.cpp | 74 m_arguments.push_back(arg1); in CommandObjectLogEnable() 75 m_arguments.push_back(arg2); in CommandObjectLogEnable() 244 m_arguments.push_back(arg1); in CommandObjectLogDisable() 245 m_arguments.push_back(arg2); in CommandObjectLogDisable()
|
| H A D | CommandObjectMemory.cpp | 317 m_arguments.push_back(arg1); in CommandObjectMemoryRead() 318 m_arguments.push_back(arg2); in CommandObjectMemoryRead() 1025 m_arguments.push_back(arg1); in CommandObjectMemoryFind() 1026 m_arguments.push_back(arg2); in CommandObjectMemoryFind() 1244 m_arguments.push_back(arg1); 1245 m_arguments.push_back(arg2); 1555 m_arguments.push_back(arg1); in CommandObjectMemoryHistory() 1658 m_arguments.push_back(CommandArgumentEntry{CommandArgumentData( in CommandObjectMemoryRegion()
|
| H A D | CommandObjectRegister.cpp | 319 m_arguments.push_back(arg1); in CommandObjectRegisterWrite() 320 m_arguments.push_back(arg2); in CommandObjectRegisterWrite()
|
| H A D | CommandObjectPlatform.cpp | 797 m_arguments.push_back(arg1); in CommandObjectPlatformGetFile() 798 m_arguments.push_back(arg2); in CommandObjectPlatformGetFile() 1002 m_arguments.push_back({source_arg}); in CommandObjectPlatformPutFile() 1003 m_arguments.push_back({path_arg}); in CommandObjectPlatformPutFile() 1758 m_arguments.push_back({local_arg}); in CommandObjectPlatformInstall() 1759 m_arguments.push_back({remote_arg}); in CommandObjectPlatformInstall()
|
| H A D | CommandObjectCommands.cpp | 366 m_arguments.push_back(arg1); in CommandObjectCommandsAlias() 367 m_arguments.push_back(arg2); in CommandObjectCommandsAlias() 368 m_arguments.push_back(arg3); in CommandObjectCommandsAlias() 1991 m_arguments.push_back(this_entry); in CommandObjectScriptingObjectParsed()
|
| H A D | CommandObjectTarget.cpp | 1027 m_arguments.push_back(arg); in CommandObjectTargetModulesSearchPathsAdd() 1128 m_arguments.push_back(arg1); in CommandObjectTargetModulesSearchPathsInsert() 1129 m_arguments.push_back(arg2); in CommandObjectTargetModulesSearchPathsInsert()
|
| H A D | CommandObjectThread.cpp | 1153 m_arguments.push_back(arg); in CommandObjectThreadSelect()
|
| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 68 if (!m_arguments.empty()) { in GetSyntax() 403 m_arguments.push_back(arg_entry); in AddSimpleArgumentList() 406 int CommandObject::GetNumArgumentEntries() { return m_arguments.size(); } in GetNumArgumentEntries() 410 if (static_cast<size_t>(idx) < m_arguments.size()) in GetArgumentEntryAtIndex() 411 return &(m_arguments[idx]); in GetArgumentEntryAtIndex() 531 int num_args = m_arguments.size(); in GetFormattedCommandArguments() 537 ? m_arguments[i] in GetFormattedCommandArguments() 538 : OptSetFiltered(opt_set_mask, m_arguments[i]); in GetFormattedCommandArguments() 733 m_arguments.push_back(arg); in AddIDsArgumentData() 821 if (cmd_args.GetArgumentCount() != 0 && m_arguments.empty()) { in Execute()
|
| H A D | CommandAlias.cpp | 92 m_arguments.push_back(*cmd_entry); in CommandAlias()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Language.h | 223 : m_full(full), m_basename(), m_context(), m_arguments(), in MethodName() 233 m_arguments = llvm::StringRef(); in Clear() 266 return m_arguments; in GetArguments() 298 llvm::StringRef m_arguments; // Arguments: "(unsigned int)" variable
|
| H A D | StackFrameRecognizer.h | 38 return m_arguments; in GetRecognizedArguments() 51 lldb::ValueObjectListSP m_arguments;
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | ProcessInfo.h | 76 Args &GetArguments() { return m_arguments; } in GetArguments() 78 const Args &GetArguments() const { return m_arguments; } in GetArguments() 125 Args m_arguments; // All program arguments except argv[0] variable
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | StackFrameRecognizer.cpp | 25 m_arguments = std::move(args); in ScriptedRecognizedStackFrame()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | CommandObject.h | 417 std::vector<CommandArgumentEntry> m_arguments; variable
|
| /freebsd/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | ProcessLaunchInfo.cpp | 333 m_arguments = shell_arguments; in ConvertArgumentsForLaunchingInShell()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | CPlusPlusLanguage.cpp | 405 m_arguments = full.substr(arg_start, arg_end - arg_start + 1); in TrySimplifiedParse() 430 m_arguments = llvm::StringRef(); in TrySimplifiedParse() 448 m_arguments = function->arguments; in Parse()
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBCommandInterpreter.cpp | 56 m_arguments.push_back({none_arg}); in CommandPluginInterfaceImplementation()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntimeV2.cpp | 3465 m_arguments = ValueObjectListSP(new ValueObjectList()); in ObjCExceptionRecognizedStackFrame() 3466 m_arguments->Append(exception); in ObjCExceptionRecognizedStackFrame()
|