Home | History | Annotate | Download | only in Interpreter

Lines Matching full:include_aliases

626 CommandInterpreter::GetCommandNamesMatchingPartialString (const char *cmd_str, bool include_aliases,
631 if (include_aliases)
640 CommandInterpreter::GetCommandSP (const char *cmd_cstr, bool include_aliases, bool exact, StringList *matches)
654 if (include_aliases && HasAliases())
698 if (include_aliases && HasAliases())
798 CommandInterpreter::GetCommandSPExact (const char *cmd_cstr, bool include_aliases)
807 return GetCommandSP(cmd_cstr, include_aliases, true, NULL);
812 include_aliases, true, NULL);
841 CommandInterpreter::GetCommandObjectExact (const char *cmd_cstr, bool include_aliases)
843 return GetCommandSPExact (cmd_cstr, include_aliases).get();
955 const bool include_aliases = false;
957 CommandObjectSP cmd_obj_sp(GetCommandSP (cmd, include_aliases, exact, &regular_matches));
1890 bool include_aliases = true;
1891 num_command_matches = GetCommandNamesMatchingPartialString ("", include_aliases, matches);