Lines Matching refs:cmd_cstr
640 CommandInterpreter::GetCommandSP (const char *cmd_cstr, bool include_aliases, bool exact, StringLis… in GetCommandSP() argument
645 std::string cmd(cmd_cstr); in GetCommandSP()
687 …um_cmd_matches = CommandObject::AddNamesMatchingPartialString (m_command_dict, cmd_cstr, *matches); in GetCommandSP()
700 …um_alias_matches = CommandObject::AddNamesMatchingPartialString (m_alias_dict, cmd_cstr, *matches); in GetCommandSP()
714 … num_user_matches = CommandObject::AddNamesMatchingPartialString (m_user_dict, cmd_cstr, *matches); in GetCommandSP()
740 matches->AppendString (cmd_cstr); in GetCommandSP()
798 CommandInterpreter::GetCommandSPExact (const char *cmd_cstr, bool include_aliases) in GetCommandSPExact() argument
800 …Args cmd_words (cmd_cstr); // Break up the command string into words, in case it's a multi-word co… in GetCommandSPExact()
803 if (cmd_cstr == NULL) in GetCommandSPExact()
807 return GetCommandSP(cmd_cstr, include_aliases, true, NULL); in GetCommandSPExact()
841 CommandInterpreter::GetCommandObjectExact (const char *cmd_cstr, bool include_aliases) in GetCommandObjectExact() argument
843 return GetCommandSPExact (cmd_cstr, include_aliases).get(); in GetCommandObjectExact()
847 CommandInterpreter::GetCommandObject (const char *cmd_cstr, StringList *matches) in GetCommandObject() argument
849 CommandObject *command_obj = GetCommandSP (cmd_cstr, false, true, matches).get(); in GetCommandObject()
857 command_obj = GetCommandSP (cmd_cstr, true, true, matches).get(); in GetCommandObject()
863 command_obj = GetCommandSP(cmd_cstr, false, false, NULL).get(); in GetCommandObject()
875 return GetCommandSP(cmd_cstr, true, false, matches).get(); in GetCommandObject()