Searched refs:command (Results 276 - 300 of 694) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/contrib/groff/src/roff/groff/
H A Dgroff.cpp99 void handle_unknown_desc_command(const char *command, const char *arg,
295 fatal("no `postpro' command in DESC file for device `%1'", device);
447 void handle_unknown_desc_command(const char *command, const char *arg, argument
450 if (strcmp(command, "print") == 0) {
453 "`print' command requires an argument");
457 if (strcmp(command, "prepro") == 0) {
460 "`prepro' command requires an argument");
472 if (strcmp(command, "postpro") == 0) {
475 "`postpro' command requires an argument");
/freebsd-11-stable/lib/libcuse/
H A Dcuse_lib.c481 enter.cmd = info.command;
489 (int)info.command, cuse_cmd_str(info.command), (int)info.fflags,
492 switch (info.command) {
593 error, cuse_cmd_str(info.command));
599 /* we ignore any sync command failures */
/freebsd-11-stable/release/picobsd/tinyware/msh/
H A Dsh2.c40 #define CONTIN 01 /* skip new lines to complete command */
58 _PROTOTYPE(static struct op *command, (int cf ));
101 t = command(cf);
104 if ((p = command(CONTIN)) == NULL)
230 command(cf) function
787 prs("command line too complicated\n");
/freebsd-11-stable/sys/dev/nand/
H A Dnfc_fsl.c122 static int fsl_nfc_send_command(device_t dev, uint8_t command);
301 fsl_nfc_send_command(device_t dev, uint8_t command) argument
307 // device_printf(dev, "%s(command=%u)\n", __func__, command);
312 if (command == NAND_CMD_PROG_END) {
316 fcm->reg_fcr |= command << CMD_SHIFT(fcm->cmdnr);
323 switch (command) {
629 static u_int csct = 1; /* 22: Chip select to command time (trlx). */
631 "Chip select to command time: determines how far in advance -LCSn is "
638 "the command, addres
[all...]
H A Dnandbus.c315 nand_debug(NDBG_BUS,"Error : could not send READ ID command");
325 nand_debug(NDBG_BUS,"Error : could not start command");
352 nand_debug(NDBG_BUS,"Error : could not sent READ ID command");
362 nand_debug(NDBG_BUS,"Error : could not start command");
387 nand_debug(NDBG_BUS,"Error : could not sent RESET command");
392 nand_debug(NDBG_BUS,"Error : could not start RESET command");
436 nandbus_send_command(device_t dev, uint8_t command) argument
440 if ((err = NFC_SEND_COMMAND(device_get_parent(dev), command)))
441 nand_debug(NDBG_BUS,"Err: Could not send command %x, err %x",
442 command, er
[all...]
/freebsd-11-stable/sys/dev/twa/
H A Dtw_cl_misc.c332 "Cannot send command to fetch aen");
359 if ((error = req->cmd_pkt->command.cmd_pkt_9k.status)) {
594 * Look at the status field in the command packet to see how
599 if (req->cmd_pkt->command.cmd_pkt_9k.status)
604 tw_osl_memzero(&(req->cmd_pkt->command),
966 cmd9k = &(cmd_pkt->command.cmd_pkt_9k);
989 cmd7k = &(cmd_pkt->command.cmd_pkt_7k);
/freebsd-11-stable/sys/dev/usb/net/
H A Dusb_ethernet.c299 /* wait for any post attach or other command to complete */
501 uether_ioctl(struct ifnet *ifp, u_long command, caddr_t data) argument
508 switch (command) {
539 error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
541 error = ether_ioctl(ifp, command, data);
544 error = ether_ioctl(ifp, command, data);
/freebsd-11-stable/sys/dev/cm/
H A Dsmc90cx6.c850 cm_ioctl(ifp, command, data)
852 u_long command;
862 if_printf(ifp, "ioctl() called, cmd = 0x%lx\n", command);
865 switch (command) {
871 error = arc_ioctl(ifp, command, data);
/freebsd-11-stable/sys/dev/ntb/if_ntb/
H A Dif_ntb.c109 static int ntb_ioctl(if_t ifp, u_long command, caddr_t data);
234 ntb_ioctl(if_t ifp, u_long command, caddr_t data) argument
240 switch (command) {
259 error = ifmedia_ioctl(ifp, ifr, &sc->media, command);
288 error = ether_ioctl(ifp, command, data);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp575 StreamString command; local
577 command.Printf("%s --ignoreNegativeCache --copyExecutable %s",
580 command.Printf("%s --ignoreNegativeCache --copyExecutable %s",
583 if (!command.GetString().empty()) {
597 command.GetData(),
/freebsd-11-stable/tools/sched/
H A Dschedgraph.py190 self.scale = Scale(self, command=self.scaleset,
237 self.list = OptionMenu(self, self.color, command=self.setcolor,
304 command=self.apress)
306 command=self.rpress)
400 command=self.apress)
402 command=self.rpress)
404 command=self.cpress)
406 command=self.upress)
508 self.add_command(label="hide", command=self.hide)
509 self.add_command(label="hide group", command
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryWriter.cpp154 // For use as template parameter to load command methods.
156 typedef llvm::MachO::segment_command_64 command; typedef in struct:lld::mach_o::normalized::MachOFileLayout::MachO64Trait
161 // For use as template parameter to load command methods.
163 typedef llvm::MachO::segment_command command; typedef in struct:lld::mach_o::normalized::MachOFileLayout::MachO32Trait
266 // object files have just one segment load command containing all sections
329 // Final linked images have one load command per segment.
623 typename T::command* seg = reinterpret_cast<typename T::command*>(lc);
625 seg->cmdsize = sizeof(typename T::command)
645 (lc+sizeof(typename T::command));
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Ddeprecated.c330 /* Print the canonical command name. */
446 const svn_opt_subcommand_desc2_t *command,
454 if (command)
459 command->desc_overrides[j].optch); j++)
460 if (command->desc_overrides[j].optch == code)
465 tmpopt->description = command->desc_overrides[j].desc;
495 const svn_opt_subcommand_desc2_t *command,
500 = svn_opt_get_option_from_code2(code, option_table, command, pool);
555 /* Print the canonical command name for CMD, and all its aliases, to
569 /* Print the canonical command nam
442 svn_opt_get_option_from_code2(int code, const apr_getopt_option_t *option_table, const svn_opt_subcommand_desc2_t *command, apr_pool_t *pool) argument
490 get_option_from_code(const char **long_alias, int code, const apr_getopt_option_t *option_table, const svn_opt_subcommand_desc2_t *command, apr_pool_t *pool) argument
713 svn_opt_subcommand_takes_option3(const svn_opt_subcommand_desc2_t *command, int option_code, const int *global_options) argument
732 svn_opt_subcommand_takes_option2(const svn_opt_subcommand_desc2_t *command, int option_code) argument
741 svn_opt_subcommand_takes_option(const svn_opt_subcommand_desc_t *command, int option_code) argument
[all...]
/freebsd-11-stable/sys/dev/ixgbe/
H A Dixgbe_x550.c349 u32 i, data, command; local
352 /* Setup and write the read command */
353 command = (reg_addr << IXGBE_MSCA_DEV_TYPE_SHIFT) |
358 IXGBE_WRITE_REG(hw, IXGBE_MSCA, command);
367 command = IXGBE_READ_REG(hw, IXGBE_MSCA);
368 if (!(command & IXGBE_MSCA_MDI_COMMAND))
372 if (command & IXGBE_MSCA_MDI_COMMAND) {
374 "PHY read command did not complete.\n");
396 u32 i, command; local
402 /* Setup and write the write command */
1199 u32 i, command = 0; local
1233 u32 command, error; local
1279 u32 command, error; local
[all...]
/freebsd-11-stable/sys/cam/ata/
H A Data_all.c77 switch (cmd->command) {
335 cmd->command, cmd->features,
553 ataio->cmd.command = cmd;
580 ataio->cmd.command = cmd;
601 ataio->cmd.command = cmd;
629 ataio->cmd.command = ATA_READ_PM;
639 ataio->cmd.command = ATA_WRITE_PM;
/freebsd-11-stable/sys/dev/ocs_fc/
H A Dsli4.c339 * @return Returns 0 if command succeeded, or non-zero otherwise.
365 * @brief Dump BMBX mailbox command.
369 * into account which mailbox command is given since SLI_CONFIG
373 * the one-command-at-a-time nature of the BMBX to be able to
379 * @param mbx Pointer to mailbox command to dump.
397 if (hdr->command == SLI4_MBOX_COMMAND_SLI_CONFIG) {
403 /* if embedded, dump entire command */
440 /* not an SLI_CONFIG command, just display first 64 bytes, like we do
451 * @brief Submit a command to the bootstrap mailbox and check the status.
468 "command rejecte
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dtarget.h297 command, and (if successful) pushes a new target onto the
381 void (*to_rcmd) (char *command, struct ui_file *output);
461 to the `attach' command by the user. This routine can be called
803 /* Does target have enough data to do a run or attach command? */
833 #define target_rcmd(command, outbuf) \
834 (*current_target.to_rcmd) (command, outbuf)
1245 /* Convert from a number used in a GDB command to an enum target_signal. */
/freebsd-11-stable/crypto/openssh/
H A Dssh.c126 /* Flag indicating whether debug mode is on. May be set on the command line. */
137 * on the command line.
158 * General data structure for command line options and options configurable
168 * command line, or the HostName specified for the user-supplied name in a
183 /* command to be executed */
184 Buffer command; variable
186 /* Should we execute a command or invoke a subsystem? */
208 " [user@]hostname [command]\n"
459 * file if the user specifies a config file on the command line.
602 /* Parse command
[all...]
/freebsd-11-stable/contrib/wpa/wpa_supplicant/examples/
H A Dwps-nfc.py458 parser.add_argument('command', choices=['write-config',
488 if args.command == "write-config":
492 if args.command == "write-er-config":
496 if args.command == "write-password":
/freebsd-11-stable/sys/dev/ixl/
H A Di40e_common.c317 * @buffer: pointer to command buffer
320 * Dumps debug log about adminq command with descriptor contents.
460 /* Indirect command */
546 /* Indirect command */
1048 * @cmd_details: pointer to command details structure or NULL
1075 * @cmd_details: pointer to command details structure or NULL
1618 /* Admin command wrappers */
1626 * @cmd_details: pointer to command details structure or NULL
1698 * @cmd_details: pointer to command details structure or NULL
1704 * command respons
6200 u32 command = 0; local
6245 u32 command = 0; local
6285 u32 command = 0; local
6359 u32 command = 0; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp3455 // Method is internally called by the 'kernel breakpoint all' command to enable
4005 bool DoExecute(Args &command, CommandReturnObject &result) override {
4040 bool DoExecute(Args &command, CommandReturnObject &result) override {
4175 bool DoExecute(Args &command, CommandReturnObject &result) override {
4176 const size_t argc = command.GetArgumentCount();
4190 auto name = command.GetArgumentAtIndex(0);
4277 bool DoExecute(Args &command, CommandReturnObject &result) override {
4278 const size_t argc = command.GetArgumentCount();
4293 auto name = command.GetArgumentAtIndex(0);
4329 bool DoExecute(Args &command, CommandReturnObjec
[all...]
/freebsd-11-stable/contrib/gdb/gdb/tui/
H A Dtui-data.h187 /* Elements in the command window content */
226 struct tui_command_element command; /* command elements */ member in union:tui_which_element
/freebsd-11-stable/sys/dev/aac/
H A Daacvar.h150 * Per-command control structure.
159 * command */
166 * command */
168 #define AAC_CMD_MAPPED (1<<0) /* command has had its data
170 #define AAC_CMD_DATAIN (1<<1) /* command involves data moving
172 #define AAC_CMD_DATAOUT (1<<2) /* command involves data moving
174 #define AAC_CMD_COMPLETED (1<<3) /* command has been completed */
175 #define AAC_CMD_TIMEDOUT (1<<4) /* command taken too long */
189 time_t cm_timestamp; /* command creation time */
241 void (*aif_set_mailbox)(struct aac_softc *sc, u_int32_t command,
[all...]
/freebsd-11-stable/sys/dev/dpaa/
H A Dif_dtsec.c103 { e_FM_MAC_EX_10G_MDIO_CMD_CMPL, "MDIO command completion" },
384 dtsec_if_ioctl(struct ifnet *ifp, u_long command, caddr_t data) argument
395 switch (command) {
410 command);
414 error = ether_ioctl(ifp, command, data);
/freebsd-11-stable/sys/dev/drm/
H A Dvia_dma.c82 * Free space in command buffer.
96 * How much does the command regulator lag behind?
448 * If there is a possibility that the command reader will
539 uint32_t command; local
553 command = ((HC_SubA_HAGPCMNT << 24) | (start_addr >> 24) |
564 VIA_WRITE(VIA_REG_TRANSPACE, command);
571 VIA_WRITE(VIA_REG_TRANSPACE, command | HC_HAGPCMNT_MASK);
585 * command reader to pause and where it actually pauses.
626 * Wrap command buffer to the beginning.
648 * command buffe
[all...]

Completed in 345 milliseconds

<<11121314151617181920>>