/freebsd/contrib/kyua/utils/cmdline/ |
H A D | commands_map_test.cpp | 78 cmdline::commands_map< cmdline::base_command_no_data > commands; in ATF_TEST_CASE_BODY() local 79 ATF_REQUIRE(commands.empty()); in ATF_TEST_CASE_BODY() 80 ATF_REQUIRE(commands.begin() == commands.end()); in ATF_TEST_CASE_BODY() 87 cmdline::commands_map< cmdline::base_command_no_data > commands; in ATF_TEST_CASE_BODY() local 89 commands.insert(cmd1); in ATF_TEST_CASE_BODY() 91 commands.insert(cmd2, "foo"); in ATF_TEST_CASE_BODY() 93 ATF_REQUIRE(!commands.empty()); in ATF_TEST_CASE_BODY() 96 iter = commands.begin(); in ATF_TEST_CASE_BODY() 106 ATF_REQUIRE(++iter == commands.end()); in ATF_TEST_CASE_BODY() 113 cmdline::commands_map< cmdline::base_command_no_data > commands; in ATF_TEST_CASE_BODY() local [all …]
|
/freebsd/crypto/heimdal/kuser/ |
H A D | Makefile.am | 42 nodist_kcc_SOURCES = kcc-commands.c 44 $(kcc_OBJECTS): kcc-commands.h 47 nodist_kdigest_SOURCES = kdigest-commands.c 57 $(kdigest_OBJECTS): kdigest-commands.h 60 kdigest-commands.h kdigest-commands.c \ 61 kcc-commands.h kcc-commands.c 63 kdigest-commands.c kdigest-commands.h: kdigest-commands.in 64 $(SLC) $(srcdir)/kdigest-commands.in 66 kcc-commands.c kcc-commands.h: kcc-commands.in 67 $(SLC) $(srcdir)/kcc-commands.in [all …]
|
H A D | kcc.c | 62 sl_slc_help(commands, argc, argv); in help() 128 sl_slc_help(commands, 0, NULL); in main() 151 ret = sl_command(commands, argc, argv); in main() 159 sl_slc_help(commands, argc, argv); in main()
|
/freebsd/crypto/heimdal/admin/ |
H A D | Makefile.am | 25 ktutil-commands.c 27 $(ktutil_OBJECTS): ktutil-commands.h 29 CLEANFILES = ktutil-commands.h ktutil-commands.c 31 ktutil-commands.c ktutil-commands.h: ktutil-commands.in 32 $(SLC) $(srcdir)/ktutil-commands.in 43 EXTRA_DIST = NTMakefile ktutil-version.rc $(man_MANS) ktutil-commands.in
|
/freebsd/kerberos5/libexec/kdigest/ |
H A D | Makefile | 10 kdigest-commands.c \ 11 kdigest-commands.h 13 CLEANFILES= kdigest-commands.h kdigest-commands.c 15 kdigest-commands.h: kdigest-commands.in 18 kdigest-commands.c: kdigest-commands.h
|
/freebsd/kerberos5/usr.bin/hxtool/ |
H A D | Makefile | 13 SRCS= hxtool.c hxtool-commands.c hxtool-commands.h 15 CLEANFILES= hxtool-commands.h hxtool-commands.c 17 hxtool-commands.h: hxtool-commands.in 20 hxtool-commands.c: hxtool-commands.h
|
/freebsd/kerberos5/usr.sbin/iprop-log/ |
H A D | Makefile | 5 SRCS= iprop-log.c iprop-commands.c iprop-commands.h kadm5_err.h 14 CLEANFILES= iprop-commands.h iprop-commands.c 16 iprop-commands.h: iprop-commands.in 19 iprop-commands.c: iprop-commands.h
|
/freebsd/kerberos5/usr.sbin/ktutil/ |
H A D | Makefile | 12 ktutil-commands.c \ 13 ktutil-commands.h \ 22 CLEANFILES= ktutil-commands.h ktutil-commands.c 26 ktutil-commands.h: ${KRB5DIR}/admin/ktutil-commands.in 29 ktutil-commands.c: ktutil-commands.h
|
/freebsd/kerberos5/usr.bin/kcc/ |
H A D | Makefile | 13 kcc-commands.c \ 14 kcc-commands.h \ 19 CLEANFILES= kcc-commands.h kcc-commands.c 21 kcc-commands.h: kcc-commands.in 24 kcc-commands.c: kcc-commands.h
|
/freebsd/contrib/kyua/cli/ |
H A D | main.cpp | 184 cmdline::commands_map< cli::cli_command > commands; in safe_main() local 186 commands.insert(new cli::cmd_about()); in safe_main() 187 commands.insert(new cli::cmd_config()); in safe_main() 188 commands.insert(new cli::cmd_db_exec()); in safe_main() 189 commands.insert(new cli::cmd_db_migrate()); in safe_main() 190 commands.insert(new cli::cmd_help(&options, &commands)); in safe_main() 192 commands.insert(new cli::cmd_debug(), "Workspace"); in safe_main() 193 commands.insert(new cli::cmd_list(), "Workspace"); in safe_main() 194 commands.insert(new cli::cmd_test(), "Workspace"); in safe_main() 196 commands.insert(new cli::cmd_report(), "Reporting"); in safe_main() [all …]
|
H A D | cmd_help.cpp | 97 const cmdline::commands_map< cli::cli_command >* commands) in general_help() 99 PRE(!commands->empty()); in general_help() 115 iter = commands->begin(); iter != commands->end(); iter++) { in general_help() 125 const cli::cli_command* command = commands->find(*i2); in general_help() 149 iter = commands->begin(); iter != commands->end(); iter++) { in general_help()
|
/freebsd/crypto/heimdal/kadmin/ |
H A D | Makefile.am | 37 kadmin-commands.c \ 38 kadmin-commands.h 40 $(kadmin_OBJECTS): kadmin-commands.h 42 CLEANFILES = kadmin-commands.h kadmin-commands.c 44 kadmin-commands.c kadmin-commands.h: kadmin-commands.in 45 $(SLC) $(srcdir)/kadmin-commands.in 97 kadmin-commands.in
|
/freebsd/kerberos5/usr.bin/kadmin/ |
H A D | Makefile | 17 kadmin-commands.c \ 18 kadmin-commands.h \ 34 CLEANFILES= kadmin-commands.h kadmin-commands.c 38 kadmin-commands.h: ${KRB5DIR}/kadmin/kadmin-commands.in 41 kadmin-commands.c: kadmin-commands.h
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | cond-func-commands.mk | 9 .if commands(target) 16 .if commands(target) 24 .if commands(target) 32 .if !commands(target) 37 .if commands(${UNDEF})
|
/freebsd/crypto/openssl/doc/man1/ |
H A D | openssl-list.pod.in | 15 [B<-commands>] 16 [B<-standard-commands>] 19 -}[B<-digest-commands>] 27 -}[B<-cipher-commands>] 72 List the commands, digest-commands, or cipher-commands in a single column. 75 =item B<-commands> 77 Display a list of standard commands. 79 =item B<-standard-commands> 81 List of standard commands. 83 =item B<-digest-commands> [all …]
|
/freebsd/contrib/smbfs/smbutil/ |
H A D | smbutil.c | 29 static struct commands { struct 34 } commands[] = { argument 46 static struct commands * 49 struct commands *cmd; in lookupcmd() 51 for (cmd = commands; cmd->name; cmd++) { in lookupcmd() 78 struct commands *cmd; in cmd_help() 96 struct commands *cmd; in main()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | InterpreterProperties.td | 7 …ession alias commands will show the expanded command that will be executed. This can be used to de… 15 Desc<"If true, commands will be saved into a transcript buffer for user access.">; 35 def EchoCommands: Property<"echo-commands", "Boolean">, 38 Desc<"If true, commands will be echoed before they are evaluated.">; 39 def EchoCommentCommands: Property<"echo-comment-commands", "Boolean">, 42 Desc<"If true, commands will be echoed even if they are pure comment lines.">; 50 …"If true, require --overwrite in 'command script add' before overwriting existing user commands.">;
|
/freebsd/usr.sbin/cron/doc/ |
H A D | CONVERSION | 5 users' commands in a different file. This is different on 4.2 and 4.3, 7 can move 'news' and 'uucp' cron commands into files owned and maintainable 9 of the cron commands. On 4.3, there's no need for the 'su' stuff since the 17 Most commands in most crontabs are run by root, have to run by root, and 21 'uucp's commands need their own file; how about /usr/lib/uucp/crontab.src? 52 to keep uucp's commands) which would look like this: 64 The application to the `news' cron commands (if any) is left for you to 65 figure out. Likewise if there are any other cruddy-looking 'su' commands in 66 your crontab commands, you don't need them anymore: just find a good place 68 user, put the cron commands into it, and install it using the `crontab' [all …]
|
/freebsd/crypto/heimdal/lib/kadm5/ |
H A D | Makefile.am | 120 nodist_iprop_log_SOURCES = iprop-commands.c 153 iprop-commands.c iprop-commands.h: iprop-commands.in 154 $(SLC) $(srcdir)/iprop-commands.in 157 $(iprop_log_OBJECTS): iprop-commands.h 161 CLEANFILES = kadm5_err.c kadm5_err.h iprop-commands.h iprop-commands.c 192 iprop-commands.in \
|
/freebsd/contrib/tcsh/nls/C/ |
H A D | set11 | 10 8 -b file batch mode, read and execute commands from `file' \n\ 22 -s read commands from standard input \n\ 24 -v echo commands after history substitution \n\ 25 -V like -v but including commands read from the start-up file \n\ 26 -x echo commands immediately before execution \n\ 27 -X like -x but including commands read from the start-up file \n\
|
/freebsd/tests/sys/cddl/zfs/include/ |
H A D | Makefile | 19 ${PACKAGE}FILES+= commands.cfg 20 CLEANFILES+= commands.cfg 21 commands.cfg: translatecommands.awk commands.txt
|
/freebsd/lib/libc/db/test/btree.tests/ |
H A D | main.c | 81 cmd_table commands[] = { variable 213 for (i = 0; commands[i].cmd != NULL; i++) 214 if (strncmp(commands[i].cmd, argv[0], 215 strlen(commands[i].cmd)) == 0) 218 if (commands[i].cmd == NULL) { 224 if (commands[i].nargs != argc - 1) { 225 (void)fprintf(stderr, "usage: %s\n", commands[i].usage); 229 if (recno && commands[i].rconv) { 235 (*commands[i].func)(db, argv); 430 for (i = 0; commands[i].cmd; i++) [all …]
|
/freebsd/usr.sbin/mlxcontrol/ |
H A D | command.c | 61 } commands[] = { variable 136 for (i = 0; commands[i].cmd != NULL; i++) in main() 137 if (!strcmp(argv[0], commands[i].cmd)) in main() 138 return(commands[i].func(argc, argv)); in main() 152 for (i = 0; commands[i].cmd != NULL; i++) in cmd_help() 153 if (!strcmp(argv[1], commands[i].cmd)) { in cmd_help() 154 fprintf(stderr, "%s\n", commands[i].text); in cmd_help() 162 for (i = 0; commands[i].cmd != NULL; i++) in cmd_help() 163 fprintf(stderr, " %-20s %s\n", commands[i].cmd, commands[i].desc); in cmd_help()
|
/freebsd/ |
H A D | README.md | 24 | bin | System/user commands. | 25 | cddl | Various commands and libraries under the Common Development and Distribution License. | 36 | sbin | System commands. | 37 | secure | Cryptographic libraries and commands. | 44 | usr.bin | User commands. | 45 | usr.sbin | System administration commands. |
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | ENGINE_add.pod | 406 "commands" and expose them to OpenSSL and any applications based on 413 available "control commands", providing a more flexible configuration 417 supported control commands and simply prefer to pass settings into ENGINEs 420 Before illustrating how control commands work, it is worth mentioning what 422 control commands; the first is to provide the necessary details to the 427 logging information, etc etc. This class of commands typically needs to be 429 calling ENGINE_init(). The other class of commands consist of settings or 431 place, and these commands may work either before or after ENGINE_init(), or 433 this in the descriptions attached to built-in control commands and/or in 436 I<Issuing control commands to an ENGINE> [all …]
|