Lines Matching refs:command
123 const cli::cli_command* command = commands->find(*i2); in general_help() local
125 row.push_back(command->name()); in general_help()
126 row.push_back(F("%s.") % command->short_description()); in general_help()
168 const cli::cli_command* command) in subcommand_help() argument
172 cmdline::progname() % command->name() % in subcommand_help()
173 (command->options().empty() ? "" : " [command_options]") % in subcommand_help()
174 (command->arg_list().empty() ? "" : (" " + command->arg_list())), in subcommand_help()
177 ui->out_wrap(F("%s.") % command->short_description()); in subcommand_help()
180 const text::table command_table = options_help(command->options()); in subcommand_help()
202 ui->out_wrap(F("See kyua-%s(1) for more details.") % command->name()); in subcommand_help()
238 const cli::cli_command* command = _commands->find(cmdname); in run() local
239 if (command == NULL) in run()
243 subcommand_help(ui, _options, command); in run()