Home
last modified time | relevance | path

Searched refs:cmdHistory (Results 1 – 2 of 2) sorted by relevance

/kernel/liteos_a/shell/full/src/base/
Dshmsg.c70 CmdKeyLink *cmdHistory = shellCB->cmdHistoryKeyLink; in ShellSaveHistoryCmd() local
79 if (cmdHistory->count != 0) { in ShellSaveHistoryCmd()
80 cmdNxt = LOS_DL_LIST_ENTRY(cmdHistory->list.pstPrev, CmdKeyLink, list); in ShellSaveHistoryCmd()
88 if (cmdHistory->count == CMD_HISTORY_LEN) { in ShellSaveHistoryCmd()
89 cmdNxt = LOS_DL_LIST_ENTRY(cmdHistory->list.pstNext, CmdKeyLink, list); in ShellSaveHistoryCmd()
91 LOS_ListTailInsert(&(cmdHistory->list), &(cmdkey->list)); in ShellSaveHistoryCmd()
97 LOS_ListTailInsert(&(cmdHistory->list), &(cmdkey->list)); in ShellSaveHistoryCmd()
98 cmdHistory->count++; in ShellSaveHistoryCmd()
/kernel/liteos_a/apps/shell/src/
Dshmsg.c82 CmdKeyLink *cmdHistory = shellCB->cmdHistoryKeyLink; in ShellSaveHistoryCmd() local
92 if (cmdHistory->count != 0) { in ShellSaveHistoryCmd()
93 cmdNxt = SH_LIST_ENTRY(cmdHistory->list.pstPrev, CmdKeyLink, list); in ShellSaveHistoryCmd()
101 if (cmdHistory->count >= CMD_HISTORY_LEN) { in ShellSaveHistoryCmd()
102 cmdNxt = SH_LIST_ENTRY(cmdHistory->list.pstNext, CmdKeyLink, list); in ShellSaveHistoryCmd()
104 SH_ListTailInsert(&(cmdHistory->list), &(cmdkey->list)); in ShellSaveHistoryCmd()
110 SH_ListTailInsert(&(cmdHistory->list), &(cmdkey->list)); in ShellSaveHistoryCmd()
111 cmdHistory->count++; in ShellSaveHistoryCmd()