Lines Matching refs:command
61 SET_DECLARE(db_cmd_set, struct command);
62 SET_DECLARE(db_show_cmd_set, struct command);
72 static struct command db_show_all_cmds[] = {
80 static struct command db_show_cmds[] = {
93 static struct command db_command_table[] = {
127 static struct command *db_last_command = NULL;
157 static void db_cmd_list (struct command *table,
158 struct command **aux_tablep,
159 struct command **aux_tablep_end);
160 static int db_cmd_search (char *name, struct command *table,
161 struct command **aux_tablep,
162 struct command **aux_tablep_end,
163 struct command **cmdp);
164 static void db_command (struct command **last_cmdp,
165 struct command *cmd_table,
166 struct command **aux_cmd_tablep,
167 struct command **aux_cmd_tablep_end);
176 db_cmd_search(char *name, struct command *table, struct command **aux_tablep, in db_cmd_search()
177 struct command **aux_tablep_end, struct command **cmdp) in db_cmd_search()
179 struct command *cmd; in db_cmd_search()
180 struct command **aux_cmdp; in db_cmd_search()
255 db_cmd_list(struct command *table, struct command **aux_tablep, in db_cmd_list()
256 struct command **aux_tablep_end) in db_cmd_list()
258 struct command *cmd; in db_cmd_list()
259 struct command **aux_cmdp; in db_cmd_list()
278 db_command(struct command **last_cmdp, struct command *cmd_table, in db_command()
279 struct command **aux_cmd_tablep, struct command **aux_cmd_tablep_end) in db_command()
281 struct command *cmd; in db_command()
429 struct command *cmd = db_command_table;