Home
last modified time | relevance | path

Searched refs:commands (Results 1 – 25 of 255) sorted by relevance

1234567891011

/dflybsd-src/usr.sbin/installer/libinstaller/
H A Dcommands.h52 struct commands;
57 struct commands { struct
92 struct commands *commands_new(void);
93 struct command *command_add(struct commands *, const char *, ...)
103 struct command *command_get_first(const struct commands *);
110 void commands_preview(struct dfui_connection *, const struct commands *);
111 int commands_execute(struct i_fn_args *, struct commands *);
113 void commands_free(struct commands *);
119 void unmount_all_under(struct i_fn_args *, struct commands *,
H A Dcommands.c68 struct commands *
71 struct commands *cmds; in commands_new()
73 AURA_MALLOC(cmds, commands); in commands_new()
85 command_new(struct commands *cmds) in command_new()
117 command_add(struct commands *cmds, const char *fmt, ...) in command_add()
191 command_get_first(const struct commands *cmds) in command_get_first()
259 commands_preview(struct dfui_connection *c, const struct commands *cmds) in commands_preview()
502 commands_execute(struct i_fn_args *a, struct commands *cmds) in commands_execute()
555 commands_free(struct commands *cmds) in commands_free()
571 AURA_FREE(cmds, commands); in commands_free()
/dflybsd-src/contrib/smbfs/smbutil/
H A Dsmbutil.c29 static struct commands { struct
34 } commands[] = { variable
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()
/dflybsd-src/usr.sbin/cron/doc/
H A DCONVERSION7 users' commands in a different file. This is different on 4.2 and 4.3,
9 can move 'news' and 'uucp' cron commands into files owned and maintainable
11 of the cron commands. On 4.3, there's no need for the 'su' stuff since the
19 Most commands in most crontabs are run by root, have to run by root, and
23 'uucp's commands need their own file; how about /usr/lib/uucp/crontab.src?
54 to keep uucp's commands) which would look like this:
66 The application to the `news' cron commands (if any) is left for you to
67 figure out. Likewise if there are any other cruddy-looking 'su' commands in
68 your crontab commands, you don't need them anymore: just find a good place
70 user, put the cron commands into it, and install it using the `crontab'
[all …]
/dflybsd-src/lib/libc/db/test/btree.tests/
H A Dmain.c82 cmd_table commands[] = { variable
211 for (i = 0; commands[i].cmd != NULL; i++) in user()
212 if (strncmp(commands[i].cmd, argv[0], in user()
213 strlen(commands[i].cmd)) == 0) in user()
216 if (commands[i].cmd == NULL) { in user()
222 if (commands[i].nargs != argc - 1) { in user()
223 fprintf(stderr, "usage: %s\n", commands[i].usage); in user()
227 if (recno && commands[i].rconv) { in user()
233 (*commands[i].func)(db, argv); in user()
410 for (i = 0; commands[i].cmd; i++) in help()
[all …]
/dflybsd-src/usr.sbin/mlxcontrol/
H A Dcommand.c63 } commands[] = { variable
138 for (i = 0; commands[i].cmd != NULL; i++) in main()
139 if (!strcmp(argv[0], commands[i].cmd)) in main()
140 return(commands[i].func(argc, argv)); in main()
154 for (i = 0; commands[i].cmd != NULL; i++) in cmd_help()
155 if (!strcmp(argv[1], commands[i].cmd)) { in cmd_help()
156 fprintf(stderr, "%s\n", commands[i].text); in cmd_help()
164 for (i = 0; commands[i].cmd != NULL; i++) in cmd_help()
165 fprintf(stderr, " %-20s %s\n", commands[i].cmd, commands[i].desc); in cmd_help()
/dflybsd-src/usr.sbin/installer/dfuibe_installer/
H A Dfn_disk.c189 struct commands *cmds; in fn_format_disk_mbr()
278 struct commands *cmds; in fn_format_disk_uefi()
383 struct commands *cmds; in fn_wipe_start_of_disk()
425 struct commands *cmds; in fn_wipe_start_of_slice()
463 ask_to_wipe_boot_sector(struct i_fn_args *a, struct commands *fcmds) in ask_to_wipe_boot_sector()
465 struct commands *cmds; in ask_to_wipe_boot_sector()
516 struct commands *cmds; in fn_install_bootblocks()
620 struct commands *cmds; in fn_format_msdos_floppy()
647 struct commands *cmds; in fn_create_cdboot_floppy()
694 struct commands *cmds; in format_slice()
H A Dfn_configure.c97 struct commands *cmds; in fn_add_user()
248 struct commands *cmds; in fn_root_passwd()
509 struct commands *cmds; in fn_set_kbdmap()
540 struct commands *cmds; in fn_set_vidfont()
582 struct commands *cmds; in fn_set_scrnmap()
613 struct commands *cmds; in fn_set_timezone()
683 struct commands *cmds; in fn_assign_datetime()
836 struct commands *cmds; in fn_assign_ip()
1152 struct commands *cmds; in mount_target_system()
/dflybsd-src/usr.bin/objformat/
H A Dobjformat.c68 static struct command commands[] = { variable
127 for (cmds = commands; cmds < &commands[NELEM(commands) - 1]; ++cmds) { in main()
/dflybsd-src/
H A DREADME38 bin System/user commands.
50 gnu Various commands and libraries under the GNU Public License.
64 sbin System commands.
76 usr.bin User commands.
78 usr.sbin System administration commands.
/dflybsd-src/bin/ed/
H A DPOSIX20 1) BSD commands have been implemented wherever they do not conflict with
37 3) The POSIX interactive global commands `G' and `V' are extended to
38 support multiple commands, including `a', `i' and `c'. The command
39 format is the same as for the global commands `g' and `v', i.e., one
43 4) An extension to the POSIX file commands `E', `e', `r', `W' and `w' is
52 prohibits shell commands.
79 `u' within a global command undoes all previous commands (including
/dflybsd-src/usr.bin/sdpquery/
H A Dsdpquery.c55 } commands[] = { variable
119 for (cmd = commands ; cmd->command != NULL; cmd++) { in main()
148 for (cmd = commands ; cmd->command != NULL ; cmd++) in usage()
/dflybsd-src/contrib/lvm2/dist/tools/
H A Dlvm.c49 if (!strncmp(text, _cmdline->commands[i++].name, len)) in _list_cmds()
50 return strdup(_cmdline->commands[i - 1].name); in _list_cmds()
80 p = _cmdline->commands[j].name; in _list_args()
86 com = _cmdline->commands + j; in _list_args()
H A Dlvmcmdline.c487 if (!(_cmdline.commands = dm_realloc(_cmdline.commands, sizeof(*_cmdline.commands) * size))) { in __alloc()
513 nc = _cmdline.commands + _cmdline.num_commands++; in _create_new_command()
572 if (!strcmp(base, _cmdline.commands[i].name)) in _find_command()
579 return _cmdline.commands + i; in _find_command()
871 struct command *com = _cmdline.commands + i; in _display_help()
1195 dm_free(_cmdline.commands[i].valid_args); in _fin_commands()
1197 dm_free(_cmdline.commands); in _fin_commands()
/dflybsd-src/bin/chio/
H A Dchio.c95 static const struct changer_command commands[] = { variable
154 for (i = 0; commands[i].cc_name != NULL; ++i) in main()
155 if (strcmp(*argv, commands[i].cc_name) == 0) in main()
157 if (commands[i].cc_name == NULL) { in main()
159 for (i = 0; commands[i].cc_name != NULL; ++i) in main()
160 if (strncmp(*argv, commands[i].cc_name, in main()
165 if (commands[i].cc_name == NULL) in main()
168 exit ((*commands[i].cc_handler)(commands[i].cc_name, argc, argv)); in main()
/dflybsd-src/contrib/gdb-7/readline/doc/
H A Dhsuser.texi53 * Bash History Builtins:: The Bash builtin commands that manipulate
73 the list of commands previously typed.
75 number of commands to save in a history list.
77 commands (default 500) is saved.
112 When using command-line editing, search commands
116 The shell allows control over which commands are saved on the history
119 commands entered.
134 Bash provides two builtin commands which manipulate the
146 Fix Command. In the first form, a range of commands from @var{first} to
154 given, the commands are listed on standard output. The @option{-n} flag
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dtree-browser.def27 /* Misc. commands. */
34 /* Walking commands. */
84 /* Searching commands. */
88 /* Printing commands. */
/dflybsd-src/contrib/ee/
H A Dee.c432 char *commands[32]; variable
1666 if ((result = unique_test(cmd_str, commands)) != 1) in command_prompt()
5284 commands[0] = HELP; in strings_init()
5285 commands[1] = WRITE; in strings_init()
5286 commands[2] = READ; in strings_init()
5287 commands[3] = LINE; in strings_init()
5288 commands[4] = FILE_str; in strings_init()
5289 commands[5] = REDRAW; in strings_init()
5290 commands[6] = RESEQUENCE; in strings_init()
5291 commands[7] = AUTHOR; in strings_init()
[all …]
H A Dee.i18n.guide2 displayed to the user and the commands entered. This is done via message
14 All of the messages, warnings, information, and commands, are contained
29 62 - 66 commands information
94 116 - 131 strings used for commands (some also used for initialization)
114 Care should be taken when translating commands and initialization keywords
115 because the algorithm used for detecting uniqueness of entered commands
134 to the PATH variable used for commands, but with some differences. The
/dflybsd-src/usr.bin/usbhidaction/
H A Dusbhidaction.c67 static struct command *commands; variable
156 commands = parse_conf(conf, repd, reportid, ignore); in main()
202 for (cmd = commands; cmd; cmd = cmd->next) { in main()
246 freecommands(commands); in main()
247 commands = cmds; in main()
/dflybsd-src/contrib/gdb-7/gdb/mi/
H A Dmi-cmds.c31 static void build_table (struct mi_cmd *commands);
233 build_table (struct mi_cmd *commands) in build_table() argument
242 for (command = commands; command->name != 0; command++) in build_table()
/dflybsd-src/games/hack/
H A Dhh1 y k u Move commands:
9 Meta commands:
23 Game commands:
/dflybsd-src/sys/netgraph7/bluetooth/hci/
H A DTODO20 3) Add proper handling for some HCI commands
22 HCI testing commands is one example. Also might implement Host to
/dflybsd-src/etc/
H A Dmodems16 # commands
17 # intercommand_delay Minimum delay between commands to modem
/dflybsd-src/contrib/bmake/
H A Dbmake.cat166 e Print debugging information about failed commands and
99 l Print commands in Makefiles regardless of whether or not
110 running commands. These temporary scripts are created in
132 x Run shell commands with -x so the actual commands are
148 -i Ignore non-zero exit of shell commands in the makefile. Equiva-
162 compatibility mode is off, all commands associated with a target
193 -n Display the commands that would have been executed, but do not
197 -N Display the commands that would have been executed, but do not
201 -q Do not execute any commands, instead exit 0 if the specified tar-
209 -s Do not echo any commands as they are executed. Equivalent to
[all …]

1234567891011