HomeSort by relevance Sort by last modified time
    Searched refs:CurrentCommand (Results 1 - 8 of 8) sorted by null

  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel1CommandsLib/
For.c 101 && CurrentScriptFile->CurrentCommand!=NULL
102 ? CurrentScriptFile->CurrentCommand->Line:0);
339 if ((CurrentScriptFile->CurrentCommand != NULL) && (CurrentScriptFile->CurrentCommand->Data == NULL)) {
354 CurrentScriptFile->CurrentCommand->Line);
433 CurrentScriptFile->CurrentCommand->Data = Info;
475 CurrentScriptFile->CurrentCommand->Line);
497 CurrentScriptFile->CurrentCommand->Line);
513 CurrentScriptFile->CurrentCommand->Line);
533 CurrentScriptFile->CurrentCommand->Line);
    [all...]
Goto.c 94 && CurrentScriptFile->CurrentCommand!=NULL
95 ? CurrentScriptFile->CurrentCommand->Line:0);
UefiShellLevel1CommandsLib.c 192 ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &CommandNode->Link);
194 ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)CommandNode;
210 ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &CommandNode->Link);
212 ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)CommandNode;
275 for (CommandNode = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &ScriptFile->CurrentCommand->Link), Found = FALSE
293 ; CommandNode != ScriptFile->CurrentCommand && !Found
If.c 723 for (CommandNode = (SCRIPT_COMMAND_LIST *)GetNextNode(&ScriptFile->CommandList, &ScriptFile->CurrentCommand->Link), Found = FALSE
774 ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)GetNextNode(&ScriptFile->CommandList, &CommandNode->Link);
857 && CurrentScriptFile->CurrentCommand!=NULL
858 ? CurrentScriptFile->CurrentCommand->Line:0);
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
Help.c 301 CONST CHAR16 *CurrentCommand;
403 for (CurrentCommand = SortedCommandList
404 ; CurrentCommand != NULL && *CurrentCommand != CHAR_NULL && CurrentCommand < SortedCommandList + SortedCommandListSize/sizeof(CHAR16)
405 ; CurrentCommand += StrLen(CurrentCommand) + 1
414 if ((gUnicodeCollation->MetaiMatch(gUnicodeCollation, (CHAR16*)CurrentCommand, CommandToGetHelpOn)) ||
415 (gEfiShellProtocol->GetAlias(CommandToGetHelpOn, NULL) != NULL && (gUnicodeCollation->MetaiMatch(gUnicodeCollation, (CHAR16*)CurrentCommand, (CHAR16*)(gEfiShellProtocol->GetAlias(CommandToGetHelpOn, NULL)))))) {
419 Status = ShellPrintHelp(CurrentCommand, SectionToGetHelpOn, PrintCommandText);
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellCommandLib/
UefiShellCommandLib.c 1020 Script->CurrentCommand = NULL;
1022 Script->CurrentCommand = (SCRIPT_COMMAND_LIST *)GetFirstNode(&Script->CommandList);
1023 if (Script->CurrentCommand != NULL) {
1024 RemoveEntryList(&Script->CurrentCommand->Link);
1025 if (Script->CurrentCommand->Cl != NULL) {
1026 SHELL_FREE_NON_NULL(Script->CurrentCommand->Cl);
1028 if (Script->CurrentCommand->Data != NULL) {
1029 SHELL_FREE_NON_NULL(Script->CurrentCommand->Data);
1031 SHELL_FREE_NON_NULL(Script->CurrentCommand);
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
Shell.c     [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Include/Library/
ShellCommandLib.h 401 SCRIPT_COMMAND_LIST *CurrentCommand; ///< The command currently being operated. If !=NULL must be a member of CommandList.

Completed in 501 milliseconds