Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDCommandObjectMultiword.h47 const lldb::CommandObjectSP& command_obj);
138 const lldb::CommandObjectSP& command_obj);
HDCommandObject.h178 const lldb::CommandObjectSP& command_obj) in LoadSubCommand() argument
/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDCommandInterpreter.cpp968 CommandObject *command_obj = GetCommandSP (cmd_cstr, false, true, matches).get(); in GetCommandObject() local
973 if (command_obj) in GetCommandObject()
974 return command_obj; in GetCommandObject()
976 command_obj = GetCommandSP (cmd_cstr, true, true, matches).get(); in GetCommandObject()
978 if (command_obj) in GetCommandObject()
979 return command_obj; in GetCommandObject()
982 command_obj = GetCommandSP(cmd_cstr, false, false, nullptr).get(); in GetCommandObject()
987 if (command_obj) in GetCommandObject()
990 matches->AppendString(command_obj->GetCommandName()); in GetCommandObject()
991 return command_obj; in GetCommandObject()