/llvm-project/lldb/examples/python/ |
H A D | lldb_module_utils.py | 11 command_name = "dump-line-tables" variable in DumpLineTables 20 description=self.description, prog=self.command_name, usage=self.usage 99 command_name = "dump-files" variable in DumpFiles 121 prog=self.command_name, 195 % (__name__, DumpLineTables.command_name) 198 "command script add -o -c %s.DumpFiles %s" % (__name__, DumpFiles.command_name) 202 % (DumpLineTables.command_name, DumpFiles.command_name)
|
H A D | crashlog.py | 1586 command_name, description, add_interactive_options argument
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/command/ |
H A D | ParseCommand.py | 73 def _merge_subcommands(command_name: str, valid_commands: dict) -> dict: 74 """Merge valid_commands and command_name's subcommands into a new dict. 79 subcommands = valid_commands[command_name].get_subcommands() 293 command_name = _get_command_name(line[region_start.char :]) 295 cmd_text_list = [command_name] 298 command_name 323 valid_commands[command_name], 340 err_point.char += len(command_name) 344 err_point.char += len(command_name) 366 assert (path, cmd_point) not in commands[command_name], ( [all...] |
/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectHelp.cpp | 91 auto command_name = command[0].ref(); in DoExecute() local 92 cmd_obj = m_interpreter.GetCommandObject(command_name, &matches); in DoExecute() 157 if (m_interpreter.GetAliasFullName(command_name, alias_full_name)) { in DoExecute() 175 CommandObject::LookupArgumentName(command_name); in DoExecute() 182 GenerateAdditionalHelpAvenuesMessage(&error_msg_stream, command_name, in DoExecute()
|
H A D | CommandObjectCommands.cpp | 637 auto command_name = args[0].ref(); in DoExecute() 638 cmd_obj = m_interpreter.GetCommandObject(command_name); in DoExecute() 647 if (m_interpreter.CommandExists(command_name)) { in DoExecute() 661 if (!m_interpreter.RemoveAlias(command_name)) { in DoExecute() 662 if (m_interpreter.AliasExists(command_name)) in DoExecute() 714 auto command_name = args[0].ref(); in DoExecute() 715 if (!m_interpreter.CommandExists(command_name)) { in DoExecute() 720 &error_msg_stream, command_name, llvm::StringRef(), llvm::StringRef(), in DoExecute() 726 if (!m_interpreter.RemoveCommand(command_name)) { in DoExecute() 631 auto command_name = args[0].ref(); DoExecute() local 708 auto command_name = args[0].ref(); DoExecute() local
|
/llvm-project/lldb/source/Target/ |
H A D | StructuredDataPlugin.cpp | 56 auto command_name = "structured-data"; in InitializeBasePluginForDebugger() local 60 parent_command->LoadSubCommand(command_name, command_sp); in InitializeBasePluginForDebugger()
|
/llvm-project/lldb/test/API/python_api/was_interrupted/ |
H A D | TestDebuggerInterruption.py | 108 self.command_name = "interruptible_command" 122 if not self.interp.UserCommandExists(self.command_name): 131 command = self.command_name 133 command = self.command_name + " " + args
|
/llvm-project/lldb/source/Interpreter/ |
H A D | CommandAlias.cpp | 144 llvm::StringRef command_name = m_underlying_command_sp->GetCommandName(); in GetAliasExpansion() local 145 help_string.Printf("'%*s", (int)command_name.size(), command_name.data()); in GetAliasExpansion()
|
H A D | CommandInterpreter.cpp | 2014 llvm::StringRef command_name = cmd_obj ? cmd_obj->GetCommandName() : "<not found>"; in HandleCommand() 2015 LLDB_LOGF(log, "HandleCommand, cmd_obj : '%s'", command_name.str().c_str()); in HandleCommand() 2985 llvm::StringRef command_name = pair.first; in FindCommandsForApropos() 2992 if (command_name.contains_insensitive(search_word) || in FindCommandsForApropos() 2996 commands_found.AppendString(command_name); 3006 (command_name + " " + subcommand_name).str(); in OverrideExecutionContext() 1977 llvm::StringRef command_name = cmd_obj ? cmd_obj->GetCommandName() : "<not found>"; HandleCommand() local 2943 llvm::StringRef command_name = pair.first; FindCommandsForApropos() local
|
/llvm-project/lldb/source/API/ |
H A D | SBCommandInterpreter.cpp | 545 const char *command_name, lldb::CommandOverrideCallback callback, in SetCommandOverrideCallback() argument 547 LLDB_INSTRUMENT_VA(this, command_name, callback, baton); in SetCommandOverrideCallback() 549 if (command_name && command_name[0] && IsValid()) { in SetCommandOverrideCallback() 550 llvm::StringRef command_name_str = command_name; in SetCommandOverrideCallback()
|
/llvm-project/lldb/include/lldb/API/ |
H A D | SBCommandInterpreter.h | 268 bool SetCommandOverrideCallback(const char *command_name,
|
/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/ |
H A D | CommunicationKDP.cpp | 733 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/lldb/bindings/python/ |
H A D | python-extensions.swig | 271 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/lldb/source/Plugins/StructuredData/DarwinLog/ |
H A D | StructuredDataDarwinLog.cpp | 1355 auto command_name = "darwin-log"; in DebuggerInitialize() 1357 bool result = parent_command->LoadSubCommand(command_name, command_sp); in DebuggerInitialize() 1351 auto command_name = "darwin-log"; DebuggerInitialize() local
|