Lines Matching defs:Command
3 * Module Name: dbhistry - debugger HISTORY command
168 char *Command;
184 * PARAMETERS: CommandLine - Command to add
188 * DESCRIPTION: Add a command line to the history buffer.
199 /* Put command into the next available slot */
207 if (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command != NULL)
210 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command);
215 Command);
216 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command =
222 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command =
226 strcpy (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command,
284 if (AcpiGbl_HistoryBuffer[HistoryIndex].Command)
288 AcpiGbl_HistoryBuffer[HistoryIndex].Command);
305 * command to be retrieved
307 * RETURN: Pointer to the retrieved command. Null on error.
309 * DESCRIPTION: Get a command from the history buffer
341 * RETURN: Pointer to the retrieved command. Null on error.
343 * DESCRIPTION: Get a command from the history buffer
362 /* Found the command, return it */
364 return (AcpiGbl_HistoryBuffer[HistoryIndex].Command);