Lines Matching refs:cc
1208 struct command_ctx *cc = NULL; in cli_command_dispatch() local
1218 struct command_ctx, list_node, cc) { in cli_command_dispatch()
1219 cli_printf(NONE, "%s\n", cc->cmd.command); in cli_command_dispatch()
1220 cli_print(cc->cmd.help); in cli_command_dispatch()
1250 struct command_ctx, list_node, cc) { in cli_command_dispatch()
1251 if (strcmp(args[0], cc->cmd.command) == 0) { in cli_command_dispatch()
1261 if (cc->cmd.ignore_help_flag == false) { in cli_command_dispatch()
1268 if ((args[index] != 0 || cc->cmd.handler == 0) && in cli_command_dispatch()
1269 cc->cmd.help != 0) { in cli_command_dispatch()
1270 status = cli_print(cc->cmd.help); in cli_command_dispatch()
1288 if (cc->cmd.handler != 0) in cli_command_dispatch()
1289 return cc->cmd.handler(num_args, args); in cli_command_dispatch()