Home | History | Annotate | Download | only in debugger

Lines Matching refs:Command

176     const char              *Command,
181 char *Command);
185 const char *Command,
356 * of help to output for the command.
405 {1, " Help [Command]", "This help screen or individual command\n"},
406 {1, " History", "Display command history buffer\n"},
410 {1, " Quit or Exit", "Exit this command\n"},
423 {1, " ! <CommandNumber>", "Execute command from history buffer\n"},
424 {1, " !!", "Execute last command again\n"},
476 * PARAMETERS: Command - Command string to match
479 * RETURN: TRUE if command matched, FALSE otherwise
481 * DESCRIPTION: Attempt to match a command in the help table in order to
482 * print help information for a single command.
488 const char *Command,
507 /* Match command name (full command or substring) */
509 while ((*Command) && (*Invocation) && (*Invocation != ' '))
511 if (tolower ((int) *Command) != tolower ((int) *Invocation))
517 Command++;
538 * PARAMETERS: Command - Command string to match
544 * DESCRIPTION: Display help information for a Debugger command.
550 const char *Command,
560 Matched = AcpiDbMatchCommandHelp (Command, Next);
575 * PARAMETERS: Command - Optional command string to display help.
576 * if not specified, all debugger command
581 * DESCRIPTION: Display help for a single debugger command, or all of them.
587 char *Command)
592 if (!Command)
610 AcpiDbDisplayCommandInfo (Command, TRUE);
619 * PARAMETERS: String - Command buffer
624 * DESCRIPTION: Command line parsing. Get the next token on the command line
786 * PARAMETERS: InputBuffer - Command line buffer
788 * RETURN: Count of arguments to the command
790 * DESCRIPTION: Get the next command line from the user. Gets entire line
827 /* Uppercase the actual command */
845 * PARAMETERS: UserCommand - User command line
847 * RETURN: Index into command array, -1 if not found
849 * DESCRIPTION: Search command array for a command match
875 /* Command not recognized */
885 * PARAMETERS: InputBuffer - Command line buffer
891 * DESCRIPTION: Command dispatcher.
916 /* Find command and add to the history buffer */
922 * We don't want to add the !! command to the history buffer. It
924 * previous command.
944 /* Decode and dispatch the command */
1061 case CMD_HISTORY_EXE: /* ! command */
1072 case CMD_HISTORY_LAST: /* !! command */
1266 AcpiOsPrintf ("Event command not implemented\n");
1388 AcpiOsPrintf ("%s: unknown command\n", AcpiGbl_DbArgs[0]);
1409 * DESCRIPTION: Debugger execute thread. Waits for a command line, then
1432 * DESCRIPTION: Command line execution for the AML debugger. Commands are
1446 /* TBD: [Restructure] Need a separate command line buffer for step mode */
1450 /* Wait the readiness of the command */
1458 /* Just call to the command line interpreter */
1465 /* Notify the completion of the command */
1476 ACPI_EXCEPTION ((AE_INFO, Status, "While parsing command line"));