Home
last modified time | relevance | path

Searched refs:m_arguments (Results 1 – 21 of 21) sorted by relevance

/freebsd-head/contrib/llvm-project/lldb/source/Utility/
HDProcessInfo.cpp25 : 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-head/contrib/llvm-project/lldb/source/Commands/
HDCommandObjectSettings.cpp54 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 …]
HDCommandObjectMemoryTag.cpp35 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()
HDCommandObjectLog.cpp74 m_arguments.push_back(arg1); in CommandObjectLogEnable()
75 m_arguments.push_back(arg2); in CommandObjectLogEnable()
246 m_arguments.push_back(arg1); in CommandObjectLogDisable()
247 m_arguments.push_back(arg2); in CommandObjectLogDisable()
HDCommandObjectMemory.cpp317 m_arguments.push_back(arg1); in CommandObjectMemoryRead()
318 m_arguments.push_back(arg2); in CommandObjectMemoryRead()
969 m_arguments.push_back(arg1); in CommandObjectMemoryFind()
970 m_arguments.push_back(arg2); in CommandObjectMemoryFind()
1217 m_arguments.push_back(arg1);
1218 m_arguments.push_back(arg2);
1528 m_arguments.push_back(arg1); in CommandObjectMemoryHistory()
1630 m_arguments.push_back(CommandArgumentEntry{CommandArgumentData( in CommandObjectMemoryRegion()
HDCommandObjectRegister.cpp319 m_arguments.push_back(arg1); in CommandObjectRegisterWrite()
320 m_arguments.push_back(arg2); in CommandObjectRegisterWrite()
HDCommandObjectPlatform.cpp797 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()
1761 m_arguments.push_back({local_arg}); in CommandObjectPlatformInstall()
1762 m_arguments.push_back({remote_arg}); in CommandObjectPlatformInstall()
HDCommandObjectCommands.cpp359 m_arguments.push_back(arg1); in CommandObjectCommandsAlias()
360 m_arguments.push_back(arg2); in CommandObjectCommandsAlias()
361 m_arguments.push_back(arg3); in CommandObjectCommandsAlias()
1822 m_arguments.push_back(this_entry); in CommandObjectScriptingObjectParsed()
HDCommandObjectTarget.cpp1023 m_arguments.push_back(arg); in CommandObjectTargetModulesSearchPathsAdd()
1124 m_arguments.push_back(arg1); in CommandObjectTargetModulesSearchPathsInsert()
1125 m_arguments.push_back(arg2); in CommandObjectTargetModulesSearchPathsInsert()
HDCommandObjectThread.cpp1155 m_arguments.push_back(arg); in CommandObjectThreadSelect()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
HDCPlusPlusLanguage.h31 : m_full(), m_basename(), m_context(), m_arguments(), m_qualifiers() {} in MethodName()
34 : m_full(s), m_basename(), m_context(), m_arguments(), m_qualifiers(), in MethodName()
91 llvm::StringRef m_arguments; // Arguments: "(unsigned int)" variable
HDCPlusPlusLanguage.cpp113 m_arguments = llvm::StringRef(); in Clear()
220 m_arguments = full.substr(arg_start, arg_end - arg_start + 1); in TrySimplifiedParse()
245 m_arguments = llvm::StringRef(); in TrySimplifiedParse()
263 m_arguments = function->arguments; in Parse()
290 return m_arguments; in GetArguments()
/freebsd-head/contrib/llvm-project/lldb/source/Interpreter/
HDCommandObject.cpp69 if (!m_arguments.empty()) { in GetSyntax()
410 m_arguments.push_back(arg_entry); in AddSimpleArgumentList()
413 int CommandObject::GetNumArgumentEntries() { return m_arguments.size(); } in GetNumArgumentEntries()
417 if (static_cast<size_t>(idx) < m_arguments.size()) in GetArgumentEntryAtIndex()
418 return &(m_arguments[idx]); in GetArgumentEntryAtIndex()
538 int num_args = m_arguments.size(); in GetFormattedCommandArguments()
544 ? m_arguments[i] in GetFormattedCommandArguments()
545 : OptSetFiltered(opt_set_mask, m_arguments[i]); in GetFormattedCommandArguments()
740 m_arguments.push_back(arg); in AddIDsArgumentData()
822 if (cmd_args.GetArgumentCount() != 0 && m_arguments.empty()) { in Execute()
HDCommandAlias.cpp93 m_arguments.push_back(*cmd_entry); in CommandAlias()
/freebsd-head/contrib/llvm-project/lldb/include/lldb/Utility/
HDProcessInfo.h76 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-head/contrib/llvm-project/lldb/include/lldb/Target/
HDStackFrameRecognizer.h36 return m_arguments; in GetRecognizedArguments()
47 lldb::ValueObjectListSP m_arguments;
/freebsd-head/contrib/llvm-project/lldb/source/Target/
HDStackFrameRecognizer.cpp22 m_arguments = args; in ScriptedRecognizedStackFrame()
/freebsd-head/contrib/llvm-project/lldb/source/Host/common/
HDProcessLaunchInfo.cpp333 m_arguments = shell_arguments; in ConvertArgumentsForLaunchingInShell()
/freebsd-head/contrib/llvm-project/lldb/include/lldb/Interpreter/
HDCommandObject.h407 std::vector<CommandArgumentEntry> m_arguments; variable
/freebsd-head/contrib/llvm-project/lldb/source/API/
HDSBCommandInterpreter.cpp56 m_arguments.push_back({none_arg}); in CommandPluginInterfaceImplementation()
/freebsd-head/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
HDAppleObjCRuntimeV2.cpp3438 m_arguments = ValueObjectListSP(new ValueObjectList()); in ObjCExceptionRecognizedStackFrame()
3439 m_arguments->Append(exception); in ObjCExceptionRecognizedStackFrame()