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

/external/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h47 const lldb::CommandObjectSP& command_obj);
138 const lldb::CommandObjectSP& command_obj);
H A DCommandObject.h172 const lldb::CommandObjectSP& command_obj)
171 LoadSubCommand(const char *cmd_name, const lldb::CommandObjectSP& command_obj) argument
/external/lldb/source/Interpreter/
H A DCommandInterpreter.cpp849 CommandObject *command_obj = GetCommandSP (cmd_cstr, false, true, matches).get(); local
854 if (command_obj)
855 return command_obj;
857 command_obj = GetCommandSP (cmd_cstr, true, true, matches).get();
859 if (command_obj)
860 return command_obj;
863 command_obj = GetCommandSP(cmd_cstr, false, false, NULL).get();
868 if (command_obj)
871 matches->AppendString(command_obj->GetCommandName());
872 return command_obj;
[all...]

Completed in 4724 milliseconds