Home
last modified time | relevance | path

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

12

/freebsd-src/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.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 in Dump()
[all...]
/freebsd-src/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSettings.cpp53 // Push the data for the first argument into the m_arguments vector. in CommandObjectSettingsSet()
54 m_arguments.push_back(arg1); in CommandObjectSettingsSet()
55 m_arguments.push_back(arg2); in CommandObjectSettingsSet()
466 // Push the data for the first argument into the m_arguments vector. in DoExecute()
467 m_arguments.push_back(arg); in DoExecute()
544 // Push the data for the first argument into the m_arguments vector.
545 m_arguments.push_back(arg1);
546 m_arguments.push_back(arg2); in CommandObjectSettingsRemove()
645 // Push the data for the first argument into the m_arguments vector. in CommandObjectSettingsReplace()
646 m_arguments in CommandObjectSettingsReplace()
[all...]
H A DCommandObjectLog.cpp73 // Push the data for the first argument into the m_arguments vector. in CommandObjectLogEnable()
74 m_arguments.push_back(arg1); in CommandObjectLogEnable()
75 m_arguments.push_back(arg2); in CommandObjectLogEnable()
245 // Push the data for the first argument into the m_arguments vector. in CommandObjectLogDisable()
246 m_arguments.push_back(arg1); in CommandObjectLogDisable()
247 m_arguments.push_back(arg2); in CommandObjectLogDisable()
H A DCommandObjectPlatform.cpp796 // m_arguments vector. in CommandObjectPlatformGetFile()
797 m_arguments.push_back(arg1); in CommandObjectPlatformGetFile()
798 m_arguments.push_back(arg2); in CommandObjectPlatformGetFile()
1002 m_arguments.push_back({source_arg});
1003 m_arguments.push_back({path_arg}); in CommandObjectPlatformFileExists()
1761 m_arguments.push_back({local_arg}); in CommandObjectPlatformShell()
1762 m_arguments.push_back({remote_arg}); in CommandObjectPlatformShell()
H A DCommandObjectMemoryTag.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()
H A DCommandObjectRegister.cpp318 // Push the data for the first argument into the m_arguments vector. in CommandObjectRegisterWrite()
319 m_arguments.push_back(arg1); in CommandObjectRegisterWrite()
320 m_arguments.push_back(arg2); in CommandObjectRegisterWrite()
H A DCommandObjectWatchpoint.cpp
H A DCommandObjectTrace.cpp
H A DCommandObjectCommands.cpp358 // Push the data for the first argument into the m_arguments vector. in CommandObjectCommandsAlias()
359 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 CommandObjectMultiwordCommandsScript()
H A DCommandObjectWatchpointCommand.cpp
H A DCommandObjectThreadUtil.cpp
H A DCommandObjectPlugin.cpp
H A DCommandObjectBreakpointCommand.cpp
H A DCommandObjectMemory.cpp316 // Push the data for the first argument into the m_arguments vector. in CommandObjectMemoryRead()
317 m_arguments.push_back(arg1); in CommandObjectMemoryRead()
318 m_arguments.push_back(arg2); in CommandObjectMemoryRead()
968 // Push the data for the first argument into the m_arguments vector. in CommandObjectMemoryFind()
969 m_arguments.push_back(arg1); in CommandObjectMemoryFind()
970 m_arguments.push_back(arg2); in CommandObjectMemoryFind()
1216 // Push the data for the first argument into the m_arguments vector. in SetOptionValue()
1217 m_arguments.push_back(arg1); in SetOptionValue()
1218 m_arguments.push_back(arg2); in SetOptionValue()
1527 // Push the data for the first argument into the m_arguments vecto in DoExecute()
[all...]
H A DCommandObjectFrame.cpp
H A DCommandObjectApropos.cpp
H A DCommandObjectType.cpp
H A DCommandObjectQuit.cpp
H A DCommandObjectProcess.cpp
H A DCommandObjectThread.cpp1154 // Push the data for the first argument into the m_arguments vector. in SetOptionValue()
1155 m_arguments.push_back(arg); in SetOptionValue()
H A DCommandObjectBreakpoint.cpp
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.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
/freebsd-src/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandObject.cpp69 if (!m_arguments.empty()) { in GetSyntax()
409 // Push the data for the first argument into the m_arguments vector. in GetArgumentHelp()
410 m_arguments.push_back(arg_entry); in GetArgumentHelp()
413 int CommandObject::GetNumArgumentEntries() { return m_arguments.size(); } in GetArgumentHelp()
417 if (static_cast<size_t>(idx) < m_arguments.size()) in GetArgumentHelp()
418 return &(m_arguments[idx]); in GetArgumentHelp()
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 in Execute()
[all...]
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h76 Args &GetArguments() { return m_arguments; }
78 const Args &GetArguments() const { return m_arguments; }
125 Args m_arguments; // All program arguments except argv[0]
124 Args m_arguments; // All program arguments except argv[0] global() variable
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h36 return m_arguments; in GetRecognizedArguments()
47 lldb::ValueObjectListSP m_arguments;

12