Lines Matching refs:command
4 * Module Name: dbhistry - debugger HISTORY command
21 char *command;
39 * DESCRIPTION: Add a command line to the history buffer.
48 /* Put command into the next available slot */
55 if (acpi_gbl_history_buffer[acpi_gbl_next_history_index].command !=
60 command);
64 [acpi_gbl_next_history_index].command);
66 command = acpi_os_allocate(cmd_len + 1);
69 acpi_gbl_history_buffer[acpi_gbl_next_history_index].command =
73 strcpy(acpi_gbl_history_buffer[acpi_gbl_next_history_index].command,
122 if (acpi_gbl_history_buffer[history_index].command) {
127 command);
142 * command to be retrieved
144 * RETURN: Pointer to the retrieved command. Null on error.
146 * DESCRIPTION: Get a command from the history buffer
172 * RETURN: Pointer to the retrieved command. Null on error.
174 * DESCRIPTION: Get a command from the history buffer
189 /* Found the command, return it */
191 return (acpi_gbl_history_buffer[history_index].command);