Home
last modified time | relevance | path

Searched refs:command_name (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/lldb/examples/python/
H A Dlldb_module_utils.py12 command_name = "dump-line-tables" variable in DumpLineTables
19 prog=self.command_name,
97 command_name = "dump-files" variable in DumpFiles
116 prog = self.command_name,
188 DumpLineTables.command_name))
190 'command script add -c %s.DumpFiles %s' % (__name__, DumpFiles.command_name))
191 print('The "%s" and "%s" commands have been installed.' % (DumpLineTables.command_name,
192 DumpFiles.command_name))
H A Dcrashlog.py1075 command_name, argument
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/command/
H A DParseCommand.py69 def _merge_subcommands(command_name: str, valid_commands: dict) -> dict:
75 subcommands = valid_commands[command_name].get_subcommands()
271 cmd_text_list = [command_name]
294 valid_commands[command_name],
311 err_point.char += len(command_name)
315 err_point.char += len(command_name)
336 command_name, commands[command_name])
337 commands[command_name][path, cmd_point] = command
342 err_point.char += len(command_name)
356 for command_name in file_commands:
[all …]
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectHelp.cpp102 auto command_name = command[0].ref(); in DoExecute() local
103 cmd_obj = m_interpreter.GetCommandObject(command_name, &matches); in DoExecute()
168 if (m_interpreter.GetAliasFullName(command_name, alias_full_name)) { in DoExecute()
186 CommandObject::LookupArgumentName(command_name); in DoExecute()
193 GenerateAdditionalHelpAvenuesMessage(&error_msg_stream, command_name, in DoExecute()
H A DCommandObjectCommands.cpp663 auto command_name = args[0].ref(); in DoExecute() local
664 cmd_obj = m_interpreter.GetCommandObject(command_name); in DoExecute()
673 if (m_interpreter.CommandExists(command_name)) { in DoExecute()
687 if (!m_interpreter.RemoveAlias(command_name)) { in DoExecute()
688 if (m_interpreter.AliasExists(command_name)) in DoExecute()
753 auto command_name = args[0].ref(); in DoExecute() local
754 if (!m_interpreter.CommandExists(command_name)) { in DoExecute()
759 &error_msg_stream, command_name, llvm::StringRef(), llvm::StringRef(), in DoExecute()
765 if (!m_interpreter.RemoveCommand(command_name)) { in DoExecute()
/llvm-project-15.0.7/lldb/source/Target/
H A DStructuredDataPlugin.cpp56 auto command_name = "structured-data"; in InitializeBasePluginForDebugger() local
60 parent_command->LoadSubCommand(command_name, command_sp); in InitializeBasePluginForDebugger()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandAlias.cpp142 llvm::StringRef command_name = m_underlying_command_sp->GetCommandName(); in GetAliasExpansion() local
143 help_string.Printf("'%*s", (int)command_name.size(), command_name.data()); in GetAliasExpansion()
H A DCommandInterpreter.cpp1942 llvm::StringRef command_name = cmd_obj ? cmd_obj->GetCommandName() : "<not found>"; in HandleCommand() local
1943 LLDB_LOGF(log, "HandleCommand, cmd_obj : '%s'", command_name.str().c_str()); in HandleCommand()
2878 llvm::StringRef command_name = pair.first; in FindCommandsForApropos() local
2885 if (command_name.contains_insensitive(search_word) || in FindCommandsForApropos()
2889 commands_found.AppendString(command_name); in FindCommandsForApropos()
2899 (command_name + " " + subcommand_name).str(); in FindCommandsForApropos()
/llvm-project-15.0.7/lldb/source/API/
H A DSBCommandInterpreter.cpp522 const char *command_name, lldb::CommandOverrideCallback callback, in SetCommandOverrideCallback() argument
524 LLDB_INSTRUMENT_VA(this, command_name, callback, baton); in SetCommandOverrideCallback()
526 if (command_name && command_name[0] && IsValid()) { in SetCommandOverrideCallback()
527 llvm::StringRef command_name_str = command_name; in SetCommandOverrideCallback()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBCommandInterpreter.h217 bool SetCommandOverrideCallback(const char *command_name,
/llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.cpp733 const char *command_name = GetCommandAsCString(command); in DumpPacket() local
734 if (command_name) { in DumpPacket()
737 IsRunning(), is_reply ? "<--" : "-->", command_name, in DumpPacket()
/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-extensions.swig271 def command(command_name=None, doc=None):
277 …nd script add -f %s.%s %s" % (function.__module__, function.__name__, command_name or function.__n…
/llvm-project-15.0.7/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1356 auto command_name = "darwin-log"; in DebuggerInitialize() local
1358 bool result = parent_command->LoadSubCommand(command_name, command_sp); in DebuggerInitialize()