other_cmds        194 tools/lib/subcmd/help.c 		struct cmdnames *other_cmds)
other_cmds        213 tools/lib/subcmd/help.c 				list_commands_in_dir(other_cmds, path, prefix);
other_cmds        221 tools/lib/subcmd/help.c 		qsort(other_cmds->names, other_cmds->cnt,
other_cmds        222 tools/lib/subcmd/help.c 		      sizeof(*other_cmds->names), cmdname_compare);
other_cmds        223 tools/lib/subcmd/help.c 		uniq(other_cmds);
other_cmds        226 tools/lib/subcmd/help.c 	exclude_cmds(other_cmds, main_cmds);
other_cmds        230 tools/lib/subcmd/help.c 		   struct cmdnames *other_cmds)
other_cmds        237 tools/lib/subcmd/help.c 	for (i = 0; i < other_cmds->cnt; i++)
other_cmds        238 tools/lib/subcmd/help.c 		if (longest < other_cmds->names[i]->len)
other_cmds        239 tools/lib/subcmd/help.c 			longest = other_cmds->names[i]->len;
other_cmds        252 tools/lib/subcmd/help.c 	if (other_cmds->cnt) {
other_cmds        257 tools/lib/subcmd/help.c 		pretty_print_string_list(other_cmds, longest);
other_cmds         25 tools/lib/subcmd/help.h 		struct cmdnames *other_cmds);
other_cmds         34 tools/lib/subcmd/help.h 		   struct cmdnames *other_cmds);
other_cmds        298 tools/perf/builtin-help.c static struct cmdnames main_cmds, other_cmds;
other_cmds        457 tools/perf/builtin-help.c 	load_command_list("perf-", &main_cmds, &other_cmds);
other_cmds        468 tools/perf/builtin-help.c 		list_commands("perf commands", &main_cmds, &other_cmds);
other_cmds         58 tools/perf/util/help-unknown-cmd.c 	struct cmdnames main_cmds, other_cmds;
other_cmds         61 tools/perf/util/help-unknown-cmd.c 	memset(&other_cmds, 0, sizeof(main_cmds));
other_cmds         65 tools/perf/util/help-unknown-cmd.c 	load_command_list("perf-", &main_cmds, &other_cmds);
other_cmds         67 tools/perf/util/help-unknown-cmd.c 	if (add_cmd_list(&main_cmds, &other_cmds) < 0) {