Home
last modified time | relevance | path

Searched refs:command_obj (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h36 const lldb::CommandObjectSP &command_obj) override;
39 const lldb::CommandObjectSP &command_obj,
109 const lldb::CommandObjectSP &command_obj) override;
H A DCommandObject.h183 const lldb::CommandObjectSP &command_obj) { in LoadSubCommand() argument
188 const lldb::CommandObjectSP &command_obj, in LoadUserSubcommand() argument
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/DebuggerControllers/
H A DDefaultController.py80 for command_obj in chain.from_iterable(self.step_collection.commands.values()):
81 self.watches.update(command_obj.get_watches())
H A DConditionalController.py136 for command_obj in chain.from_iterable(self.step_collection.commands.values()):
137 self._watches.update(command_obj.get_watches())
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1214 CommandObject *command_obj = in GetCommandObject() local
1220 if (command_obj) in GetCommandObject()
1221 return command_obj; in GetCommandObject()
1223 command_obj = GetCommandSP(cmd_str, true, true, matches, descriptions).get(); in GetCommandObject()
1225 if (command_obj) in GetCommandObject()
1226 return command_obj; in GetCommandObject()
1230 command_obj = GetCommandSP(cmd_str, false, false, nullptr).get(); in GetCommandObject()
1235 if (command_obj) { in GetCommandObject()
1237 matches->AppendString(command_obj->GetCommandName()); in GetCommandObject()
1239 descriptions->AppendString(command_obj->GetHelp()); in GetCommandObject()
[all …]