Searched refs:commands (Results 1 - 25 of 110) sorted by relevance

12345

/freebsd-9.3-release/contrib/groff/src/roff/groff/
H A Dgroff.cpp53 // The number of commands must be in sync with MAX_COMMANDS in pipeline.h
94 possible_command commands[NCOMMANDS]; variable
124 commands[TROFF_INDEX].set_name(command_prefix, "troff");
143 commands[SOELIM_INDEX].set_name(command_prefix, "soelim");
144 commands[SOELIM_INDEX].append_arg(buf, optarg);
146 commands[TROFF_INDEX].append_arg(buf, optarg);
153 commands[TBL_INDEX].set_name(command_prefix, "tbl");
156 commands[PIC_INDEX].set_name(command_prefix, "pic");
159 commands[GRN_INDEX].set_name(command_prefix, "grn");
162 commands[GRAP_INDE
[all...]
H A Dpipeline.c212 int run_pipeline(int ncommands, char ***commands, int no_pipe) argument
226 /* If no_pipe is set, just run the commands in sequence
232 sprintf(err_str, "%s: pipe", commands[i][0]);
247 sprintf(err_str, "%s: dup2(stdout)", commands[i][0]);
251 sprintf(err_str, "%s: close(pipe[WRITE])", commands[i][0]);
265 sprintf(err_str, " %s: dup2(stdin)", commands[i][0]);
269 sprintf(err_str, "%s: close(last_input)", commands[i][0]);
274 sprintf(err_str, "%s: dup2(stdout)", commands[i][0]);
278 sprintf(err_str, "%s: close(pipe[WRITE])", commands[i][0]);
287 sprintf(err_str, "%s: dup2(stdin)", commands[
359 run_pipeline(int ncommands, char ***commands, int no_pipe) argument
447 run_pipeline(int ncommands, char ***commands, int no_pipe) argument
[all...]
/freebsd-9.3-release/kerberos5/usr.sbin/ktutil/
H A DMakefile11 ktutil-commands.c \
12 ktutil-commands.h \
28 ktutil-commands.h: ${KRB5DIR}/admin/ktutil-commands.in ../../tools/slc/slc
32 ktutil-commands.${ext}: ktutil-commands.h
/freebsd-9.3-release/kerberos5/usr.bin/kadmin/
H A DMakefile17 kadmin-commands.c \
18 kadmin-commands.h \
41 kadmin-commands.h: ${KRB5DIR}/kadmin/kadmin-commands.in ../../tools/slc/slc
45 kadmin-commands.${ext}: kadmin-commands.h
/freebsd-9.3-release/contrib/smbfs/smbutil/
H A Dsmbutil.c29 static struct commands { struct
34 } commands[] = { variable in typeref:struct:commands
46 static struct commands *
49 struct commands *cmd;
51 for (cmd = commands; cmd->name; cmd++) {
78 struct commands *cmd;
96 struct commands *cmd;
143 printf("where commands are:\n"
/freebsd-9.3-release/crypto/heimdal/lib/sl/
H A Dmake_cmds.c56 static struct command_list *commands; variable in typeref:struct:command_list
73 if(commands) {
74 *commands->tail = cl;
75 commands->tail = &cl->next;
79 commands = cl;
149 for(cl = commands; cl; cl = cl->next) {
150 for(xl = commands; xl != cl; xl = xl->next)
171 for(cl = commands; cl; cl = cl->next) {
/freebsd-9.3-release/contrib/libreadline/examples/
H A Dfileman.c74 /* A structure which contains information on the commands this program
83 COMMAND commands[] = { variable
200 for (i = 0; commands[i].name; i++)
201 if (strcmp (name, commands[i].name) == 0)
202 return (&commands[i]);
294 while (name = commands[list_index].name)
313 commands. */
384 /* Print out help for ARG, or for all of the commands if ARG is
392 for (i = 0; commands[i].name; i++)
394 if (!*arg || (strcmp (arg, commands[
[all...]
/freebsd-9.3-release/sbin/atm/atmconfig/
H A Datmconfig.help42 help on 'command' or 'atmconfig help commands' for a list of commands.
46 Use one of the following commands to get help on atmconfig:
50 atmconfig help commands
51 prints a list of available commands (and help items)
59 Common command line options can be specified for all commands. They
64 -t don't print headings for 'show'-type commands
67 ^0 commands
68 ^^ help commands show available commands
[all...]
/freebsd-9.3-release/crypto/heimdal/admin/
H A Dktutil.c112 sl_help(commands, 1, argv - 1 /* XXX */);
114 SL_cmd *c = sl_match (commands, argv[0], 0);
117 "Try \"help\" for a list of commands\n",
170 ret = sl_command(commands, argc, argv);
/freebsd-9.3-release/crypto/heimdal/lib/gssapi/
H A Dgss.c44 #include <gss-commands.h>
175 sl_slc_help(commands, argc, argv);
204 return sl_command (commands, argc, argv);
/freebsd-9.3-release/usr.sbin/mlxcontrol/
H A Dcommand.c61 } commands[] = { variable in typeref:struct:__anon10939
136 for (i = 0; commands[i].cmd != NULL; i++)
137 if (!strcmp(argv[0], commands[i].cmd))
138 return(commands[i].func(argc, argv));
152 for (i = 0; commands[i].cmd != NULL; i++)
153 if (!strcmp(argv[1], commands[i].cmd)) {
154 fprintf(stderr, "%s\n", commands[i].text);
161 fprintf(stderr, "Valid commands are:\n");
162 for (i = 0; commands[i].cmd != NULL; i++)
163 fprintf(stderr, " %-20s %s\n", commands[
[all...]
/freebsd-9.3-release/lib/libc/db/test/btree.tests/
H A Dmain.c85 cmd_table commands[] = { variable
217 for (i = 0; commands[i].cmd != NULL; i++)
218 if (strncmp(commands[i].cmd, argv[0],
219 strlen(commands[i].cmd)) == 0)
222 if (commands[i].cmd == NULL) {
228 if (commands[i].nargs != argc - 1) {
229 (void)fprintf(stderr, "usage: %s\n", commands[i].usage);
233 if (recno && commands[i].rconv) {
239 (*commands[i].func)(db, argv);
434 for (i = 0; commands[
[all...]
/freebsd-9.3-release/crypto/heimdal/kadmin/
H A Dkadmin.c35 #include "kadmin-commands.h"
103 sl_slc_help(commands, argc, argv);
264 ret = sl_command (commands, argc, argv);
273 ret = sl_command_loop(commands, "kadmin> ", NULL);
/freebsd-9.3-release/contrib/groff/contrib/mm/
H A DNOTES9 Different commands:
/freebsd-9.3-release/crypto/openssl/test/
H A Dtestenc30 for i in `$cmd list-cipher-commands`
/freebsd-9.3-release/sys/boot/common/
H A Dhelp.common7 The help command displays help on commands and their usage.
13 Some commands may not be available. Use the '?' command to list
14 most available commands.
17 # T? DList available commands
21 Lists all available commands.
369 # Tinclude DRead commands from a script file
374 commands, so it is safe to source a file from removable media.
/freebsd-9.3-release/usr.bin/make/
H A DGNode.h69 #define OP_DEPENDS 0x00000001 /* Execution of commands depends on
71 #define OP_FORCE 0x00000002 /* Always execute commands (!) */
72 #define OP_DOUBLEDEP 0x00000004 /* Execution of commands depends on
79 * Use associated commands for
83 * always execute commands anyway.
92 #define OP_SILENT 0x00000100 /* Don't echo commands when executed */
95 * commands should always be executed
112 #define OP_HAS_COMMANDS 0x08000000 /* Target has all the commands it
114 * multiple commands for a target */
115 #define OP_SAVE_CMDS 0x04000000 /* Saving commands o
212 Lst commands; member in struct:GNode
[all...]
H A Dmake.c163 * and it would actually be run (has commands or type OP_NOP)
234 if (remakingMakefiles && Lst_IsEmpty(&gn->commands)) {
235 DEBUGF(MAKE, ("skipping (no commands and remaking makefiles)..."));
255 * but aren't, because they have no commands and aren't of type OP_NOP,
273 * functionality by copying the node's commands, type flags
278 * its commands are always added to the target node, even if the
279 * target already has commands.
285 * Children and commands may be added to the parent and the parent's
297 if ((cgn->type & OP_USE) || Lst_IsEmpty(&pgn->commands)) {
299 * .USE or transformation and target has no commands
[all...]
/freebsd-9.3-release/usr.bin/telnet/
H A DMakefile10 SRCS= commands.c main.c network.c ring.c sys_bsd.c \
/freebsd-9.3-release/usr.bin/top/
H A DMakefile7 SRCS= commands.c display.c machine.c screen.c top.c \
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dbreakpoint.h130 implement the "catch fork", "catch vfork" and "catch exec" commands
140 commands for C++ exception handling. */
193 commands to execute when the breakpoint is hit, and so forth.
280 /* Note that the ->silent field is not currently used by any commands
318 struct command_line *commands;
548 use this for breakpoint commands. Perhaps other actions will go here
586 struct command_line *commands;
317 struct command_line *commands; member in struct:breakpoint
582 struct command_line *commands; member in struct:bpstats
/freebsd-9.3-release/contrib/libstdc++/scripts/
H A Dmake_graphs.py4 import commands
57 so = commands.getstatusoutput(cmd_str)
/freebsd-9.3-release/sys/boot/ia64/common/
H A DMakefile38 FILES+= menu.4th menu-commands.4th menusets.4th shortcuts.4th version.4th
/freebsd-9.3-release/tools/regression/usr.bin/lastcomm/
H A Dvalues.sh28 echo Running commands. This should not take more than 30s.
/freebsd-9.3-release/contrib/gdb/gdb/mi/
H A Dmi-cmds.c32 static void build_table (struct mi_cmd *commands);
39 { "break-commands", { NULL, 0 }, NULL, NULL },
230 build_table (struct mi_cmd *commands) argument
239 for (command = commands; command->name != 0; command++)

Completed in 310 milliseconds

12345