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

/freebsd-10-stable/sys/ddb/
H A Dddb.h89 LIST_HEAD(command_table, command);
90 extern struct command_table db_cmd_table;
91 extern struct command_table db_show_table;
92 extern struct command_table db_show_all_table;
111 struct command_table *more; /* another level of command */
219 void db_command_register(struct command_table *, struct command *);
220 void db_command_unregister(struct command_table *, struct command *);
H A Ddb_command.c85 struct command_table db_show_all_table =
94 struct command_table db_show_table = LIST_HEAD_INITIALIZER(db_show_table);
145 struct command_table db_cmd_table = LIST_HEAD_INITIALIZER(db_cmd_table);
179 static void db_cmd_list(struct command_table *table);
180 static int db_cmd_search(char *name, struct command_table *table,
183 struct command_table *cmd_table, int dopager);
207 db_command_register(struct command_table *list, struct command *cmd)
238 db_command_unregister(struct command_table *list, struct command *cmd)
291 db_cmd_search(char *name, struct command_table *table, struct command **cmdp)
312 db_cmd_list(struct command_table *tabl
[all...]
/freebsd-10-stable/contrib/groff/src/devices/grolj4/
H A Dlj4.cpp120 } command_table[] = { variable in typeref:struct:__anon1515
132 i < sizeof(command_table)/sizeof(command_table[0]); i++) {
133 if (strcmp(command, command_table[i].s) == 0) {
144 if (n < command_table[i].min) {
147 command, command_table[i].min);
148 n = command_table[i].min;
150 else if (n > command_table[i].max) {
153 command, command_table[i].max);
154 n = command_table[
[all...]
/freebsd-10-stable/contrib/groff/src/preproc/refer/
H A Dcommand.cpp639 } command_table[] = { variable in typeref:struct:S
760 i < sizeof(command_table)/sizeof(command_table[0]); i++)
761 if (strcmp(name, command_table[i].name) == 0) {
762 if (check_args(command_table[i].arg_types, name, argc, argv))
763 (*command_table[i].func)(argc, argv);
/freebsd-10-stable/contrib/texinfo/makeinfo/
H A Dcmds.h49 extern COMMAND command_table[];
H A Dinsertion.c2101 for (i = 0; command_table[i].name; i++)
2103 if (STREQ (command_table[i].name, cmd))
2104 return command_table[i].argument_in_braces == BRACE_ARGS;
H A Dmakeinfo.c1971 for (i = 0; command_table[i].name; i++)
1972 if (strcmp (command_table[i].name, string) == 0)
1973 return &command_table[i];
2383 for (i = 0; command_table[i].name; i++)
2384 if (proc == command_table[i].proc)
2385 return command_table[i].name;
H A Dcmds.c53 COMMAND command_table[] = { variable
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_main.c160 static zpool_command_t command_table[] = { variable
195 #define NCOMMAND (sizeof (command_table) / sizeof (command_table[0]))
322 if (command_table[i].name == NULL)
326 get_usage(command_table[i].usage));
5592 if (command_table[i].name == NULL)
5595 if (strcmp(command, command_table[i].name) == 0) {
5645 current_command = &command_table[i];
5646 ret = command_table[i].func(argc - 1, argv + 1);
5649 current_command = &command_table[
[all...]
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/zfs/
H A Dzfs_main.c179 static zfs_command_t command_table[] = { variable
220 #define NCOMMAND (sizeof (command_table) / sizeof (command_table[0]))
428 if (command_table[i].name == NULL)
432 get_usage(command_table[i].usage));
6876 if (command_table[i].name == NULL)
6879 if (strcmp(command, command_table[i].name) == 0) {
7145 current_command = &command_table[i];
7146 ret = command_table[i].func(argc - 1, argv + 1);
7149 current_command = &command_table[
[all...]
/freebsd-10-stable/sys/dev/cxgbe/
H A Dt4_main.c9646 static struct command_table db_t4_table = LIST_HEAD_INITIALIZER(db_t4_table);

Completed in 310 milliseconds