Home
last modified time | relevance | path

Searched refs:other_cmds (Results 1 – 4 of 4) sorted by relevance

/Linux-v6.6/tools/lib/subcmd/
Dhelp.c208 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()
[all …]
Dhelp.h25 struct cmdnames *other_cmds);
34 struct cmdnames *other_cmds);
/Linux-v6.6/tools/perf/util/
Dhelp-unknown-cmd.c58 struct cmdnames main_cmds, other_cmds; in help_unknown_cmd() local
61 memset(&other_cmds, 0, sizeof(main_cmds)); in help_unknown_cmd()
65 load_command_list("perf-", &main_cmds, &other_cmds); in help_unknown_cmd()
67 if (add_cmd_list(&main_cmds, &other_cmds) < 0) { in help_unknown_cmd()
95 clean_cmdnames(&other_cmds); in help_unknown_cmd()
119 clean_cmdnames(&other_cmds); in help_unknown_cmd()
/Linux-v6.6/tools/perf/
Dbuiltin-help.c300 static struct cmdnames main_cmds, other_cmds; variable
460 load_command_list("perf-", &main_cmds, &other_cmds); in cmd_help()
471 list_commands("perf commands", &main_cmds, &other_cmds); in cmd_help()