Searched refs:cmd_history (Results 1 – 2 of 2) sorted by relevance
| /components/finsh/ |
| A D | shell.c | 426 if (memcmp(&shell->cmd_history[FINSH_HISTORY_LINES - 1], shell->line, FINSH_CMD_SIZE)) in shell_push_history() 432 rt_memcpy(&shell->cmd_history[index][0], in shell_push_history() 433 &shell->cmd_history[index + 1][0], FINSH_CMD_SIZE); in shell_push_history() 435 rt_memset(&shell->cmd_history[index][0], 0, FINSH_CMD_SIZE); in shell_push_history() 436 rt_memcpy(&shell->cmd_history[index][0], shell->line, shell->line_position); in shell_push_history() 445 …if (shell->history_count == 0 || memcmp(&shell->cmd_history[shell->history_count - 1], shell->line… in shell_push_history() 448 rt_memset(&shell->cmd_history[shell->history_count][0], 0, FINSH_CMD_SIZE); in shell_push_history() 449 … rt_memcpy(&shell->cmd_history[shell->history_count][0], shell->line, shell->line_position); in shell_push_history() 594 rt_memcpy(shell->line, &shell->cmd_history[shell->current_history][0], in finsh_thread_entry() 616 rt_memcpy(shell->line, &shell->cmd_history[shell->current_history][0], in finsh_thread_entry()
|
| A D | shell.h | 74 char cmd_history[FINSH_HISTORY_LINES][FINSH_CMD_SIZE]; member
|
Completed in 4 milliseconds