Home
last modified time | relevance | path

Searched refs:command_table (Results 1 – 9 of 9) sorted by relevance

/freebsd/crypto/krb5/src/util/ss/
H A Dct_c_sed.in2 # This script parses a command_table file into something which is a bit
8 # (for the command_table line)
9 # command_table <command_table>
29 # It removes comments, and puts each command_table request onto a single
58 /^command_table /bCMD
66 # Handle the command_table keyword
H A Dstd_rqs.ct1 command_table ss_std_requests;
H A Dct_c_awk.in1 /^command_table / {
/freebsd/contrib/kyua/cli/
H A Dcmd_help.cpp184 const text::table command_table = options_help(command->options()); in subcommand_help() local
187 std::max(general_table.column_width(0), command_table.column_width(0)); in subcommand_help()
199 if (!command_table.empty()) { in subcommand_help()
202 ui->out_table(command_table, formatter, " "); in subcommand_help()
/freebsd/crypto/krb5/src/kadmin/ktutil/
H A Dktutil_ct.ct27 command_table ktutil_cmds;
/freebsd/crypto/krb5/src/kadmin/cli/
H A Dkadmin_ct.ct27 command_table kadmin_cmds;
/freebsd/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_main.c221 static zfs_command_t command_table[] = { variable
285 #define NCOMMAND (sizeof (command_table) / sizeof (command_table[0]))
550 if (command_table[i].name == NULL) in usage()
554 get_usage(command_table[i].usage)); in usage()
8155 if (command_table[i].name == NULL) in find_command_idx()
8158 if (strcmp(command, command_table[i].name) == 0) { in find_command_idx()
9469 current_command = &command_table[i]; in main()
9470 ret = command_table[i].func(argc - 1, newargv + 1); in main()
9473 current_command = &command_table[i]; in main()
9474 ret = command_table[i].func(argc, newargv); in main()
/freebsd/sys/contrib/openzfs/cmd/zpool/
H A Dzpool_main.c388 static zpool_command_t command_table[] = { variable
438 #define NCOMMAND (ARRAY_SIZE(command_table))
698 if (command_table[i].name == NULL) in usage()
702 get_usage(command_table[i].usage)); in usage()
13610 if (command_table[i].name == NULL) in find_command_idx()
13613 if (strcmp(command, command_table[i].name) == 0) { in find_command_idx()
13781 current_command = &command_table[i]; in main()
13782 ret = command_table[i].func(argc - 1, newargv + 1); in main()
13785 current_command = &command_table[i]; in main()
13786 ret = command_table[i].func(argc, newargv); in main()
/freebsd/contrib/sqlite3/autosetup/
H A Djimsh0.c1036 Jim_ParseSubCmd(Jim_Interp *interp, const jim_subcmd_type *command_table, int argc, Jim_Obj *const …
21570 static void bad_subcmd(Jim_Interp *interp, const jim_subcmd_type * command_table, const char *type, in bad_subcmd() argument
21574 subcmd, subcmd_cmd_list(interp, command_table, ", ")); in bad_subcmd()
21577 static void show_cmd_usage(Jim_Interp *interp, const jim_subcmd_type * command_table, int argc, in show_cmd_usage() argument
21581 argv[0], subcmd_cmd_list(interp, command_table, ", ")); in show_cmd_usage()
21610 const jim_subcmd_type *Jim_ParseSubCmd(Jim_Interp *interp, const jim_subcmd_type * command_table, in Jim_ParseSubCmd() argument
21631 if (cmd->internalRep.ptrIntValue.ptr == command_table) { in Jim_ParseSubCmd()
21632 ct = command_table + cmd->internalRep.ptrIntValue.int1; in Jim_ParseSubCmd()
21641 show_cmd_usage(interp, command_table, argc, argv); in Jim_ParseSubCmd()
21652 Jim_SetResult(interp, subcmd_cmd_list(interp, command_table, " ")); in Jim_ParseSubCmd()
[all …]