Searched refs:command_table (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/sys/ddb/
H A Dddb.h102 LIST_HEAD(command_table, command);
103 extern struct command_table db_cmd_table;
104 extern struct command_table db_show_table;
105 extern struct command_table db_show_all_table;
124 struct command_table *more; /* another level of command */
233 void db_command_register(struct command_table *, struct command *);
234 void db_command_unregister(struct command_table *, struct command *);
H A Ddb_command.c88 struct command_table db_show_active_table =
94 struct command_table db_show_all_table =
104 struct command_table db_show_table = LIST_HEAD_INITIALIZER(db_show_table);
157 struct command_table db_cmd_table = LIST_HEAD_INITIALIZER(db_cmd_table);
191 static void db_cmd_list(struct command_table *table);
192 static int db_cmd_search(char *name, struct command_table *table,
195 struct command_table *cmd_table, int dopager);
222 db_command_register(struct command_table *list, struct command *cmd)
253 db_command_unregister(struct command_table *list, struct command *cmd)
306 db_cmd_search(char *name, struct command_table *tabl
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/zfs/
H A Dzfs_main.c187 static zfs_command_t command_table[] = { variable
230 #define NCOMMAND (sizeof (command_table) / sizeof (command_table[0]))
458 if (command_table[i].name == NULL)
462 get_usage(command_table[i].usage));
7049 if (command_table[i].name == NULL)
7052 if (strcmp(command, command_table[i].name) == 0) {
7556 current_command = &command_table[i];
7557 ret = command_table[i].func(argc - 1, argv + 1);
7560 current_command = &command_table[
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_main.c174 static zpool_command_t command_table[] = { variable
213 #define NCOMMAND (sizeof (command_table) / sizeof (command_table[0]))
348 if (command_table[i].name == NULL)
352 get_usage(command_table[i].usage));
6654 if (command_table[i].name == NULL)
6657 if (strcmp(command, command_table[i].name) == 0) {
6707 current_command = &command_table[i];
6708 ret = command_table[i].func(argc - 1, argv + 1);
6711 current_command = &command_table[
[all...]
/freebsd-12-stable/sys/dev/cxgbe/
H A Dt4_main.c11012 static struct command_table db_t4_table = LIST_HEAD_INITIALIZER(db_t4_table);

Completed in 224 milliseconds