Home | History | Annotate | Download | only in util

Lines Matching defs:other_cmds

164 		struct cmdnames *other_cmds)
183 list_commands_in_dir(other_cmds, path, prefix);
191 qsort(other_cmds->names, other_cmds->cnt,
192 sizeof(*other_cmds->names), cmdname_compare);
193 uniq(other_cmds);
195 exclude_cmds(other_cmds, main_cmds);
199 struct cmdnames *other_cmds)
206 for (i = 0; i < other_cmds->cnt; i++)
207 if (longest < other_cmds->names[i]->len)
208 longest = other_cmds->names[i]->len;
220 if (other_cmds->cnt) {
225 pretty_print_string_list(other_cmds, longest);
279 struct cmdnames main_cmds, other_cmds;
282 memset(&other_cmds, 0, sizeof(main_cmds));
287 load_command_list("perf-", &main_cmds, &other_cmds);
290 add_cmd_list(&main_cmds, &other_cmds);