Lines Matching refs:other_cmds
208 struct cmdnames *other_cmds) in load_command_list() argument
227 list_commands_in_dir(other_cmds, path, prefix); in load_command_list()
235 qsort(other_cmds->names, other_cmds->cnt, in load_command_list()
236 sizeof(*other_cmds->names), cmdname_compare); in load_command_list()
237 uniq(other_cmds); in load_command_list()
240 exclude_cmds(other_cmds, main_cmds); in load_command_list()
244 struct cmdnames *other_cmds) in list_commands() argument
251 for (i = 0; i < other_cmds->cnt; i++) in list_commands()
252 if (longest < other_cmds->names[i]->len) in list_commands()
253 longest = other_cmds->names[i]->len; in list_commands()
266 if (other_cmds->cnt) { in list_commands()
271 pretty_print_string_list(other_cmds, longest); in list_commands()