/freebsd-src/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 in Dump() [all...] |
/freebsd-src/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectSettings.cpp | 53 // 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 D | CommandObjectLog.cpp | 73 // 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 D | CommandObjectPlatform.cpp | 796 // 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 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 | CommandObjectRegister.cpp | 318 // 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 D | CommandObjectWatchpoint.cpp |
|
H A D | CommandObjectTrace.cpp |
|
H A D | CommandObjectCommands.cpp | 358 // 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 D | CommandObjectWatchpointCommand.cpp |
|
H A D | CommandObjectThreadUtil.cpp |
|
H A D | CommandObjectPlugin.cpp |
|
H A D | CommandObjectBreakpointCommand.cpp |
|
H A D | CommandObjectMemory.cpp | 316 // 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 D | CommandObjectFrame.cpp |
|
H A D | CommandObjectApropos.cpp |
|
H A D | CommandObjectType.cpp |
|
H A D | CommandObjectQuit.cpp |
|
H A D | CommandObjectProcess.cpp |
|
H A D | CommandObjectThread.cpp | 1154 // Push the data for the first argument into the m_arguments vector. in SetOptionValue() 1155 m_arguments.push_back(arg); in SetOptionValue()
|
H A D | CommandObjectBreakpoint.cpp |
|
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | CPlusPlusLanguage.h | 31 : 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 D | CommandObject.cpp | 69 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 D | ProcessInfo.h | 76 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 D | StackFrameRecognizer.h | 36 return m_arguments; in GetRecognizedArguments() 47 lldb::ValueObjectListSP m_arguments;
|