Lines Matching defs:command
75 struct command {
82 static struct command *lookup(const char *);
108 static struct command commands[] = {
179 /* Must have at least: device command */
195 struct command *command;
197 command = lookup(argv[0]);
200 fd = opendisk(dvname, command->open_flags, dvname_store,
206 (*command->cmd_func)(argc, argv);
212 static struct command *
217 /* Look up the command. */
222 errx(EXIT_FAILURE, "unknown command: %s", name);
234 " %s device command [arg [...]]\n",