Searched refs:CommandList (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel3CommandsLib/
H A DHelp.c45 CONST COMMAND_LIST *CommandList; local
136 CommandList = ShellCommandGetCommandList(TRUE);
137 ASSERT(CommandList != NULL);
138 for ( Node = (COMMAND_LIST*)GetFirstNode(&CommandList->Link)
139 ; CommandList != NULL && !IsListEmpty(&CommandList->Link) && !IsNull(&CommandList->Link, &Node->Link)
140 ; Node = (COMMAND_LIST*)GetNextNode(&CommandList->Link, &Node->Link)
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel1CommandsLib/
H A DUefiShellLevel1CommandsLib.c187 ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &CommandNode->Link);
205 ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &CommandNode->Link);
270 for (CommandNode = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &ScriptFile->CurrentCommand->Link), Found = FALSE
271 ; !IsNull(&ScriptFile->CommandList, &CommandNode->Link)&& !Found
272 ; CommandNode = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &CommandNode->Link)
287 for (CommandNode = (SCRIPT_COMMAND_LIST *)GetFirstNode(&ScriptFile->CommandList), Found = FALSE
289 ; CommandNode = (SCRIPT_COMMAND_LIST *)(*Function)(&ScriptFile->CommandList, &CommandNode->Link)
H A DIf.c732 for (CommandNode = (SCRIPT_COMMAND_LIST *)GetNextNode(&ScriptFile->CommandList, &ScriptFile->CurrentCommand->Link), Found = FALSE
733 ; !IsNull(&ScriptFile->CommandList, &CommandNode->Link) && !Found
734 ; CommandNode = (SCRIPT_COMMAND_LIST *)GetNextNode(&ScriptFile->CommandList, &CommandNode->Link)
779 ScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)GetNextNode(&ScriptFile->CommandList, &CommandNode->Link);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DBuildEngine.py138 self.CommandList = []
142 self.CommandList.append(CmdLine)
193 CommandString = "\n\t".join(self.CommandList)
223 if not self.CommandList or not self.DestFileList:
285 CommandList = []
286 for CommandString in self.CommandList:
289 CommandList.append(CommandString)
290 TargetDesc = TargetDescBlock([SourceFile], DstFile, CommandList, self.ExtraSourceFileList)
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShell.c1684 InitializeListHead(&NewScriptFile->CommandList);
1707 InsertTailList(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link);
1730 for ( NewScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)GetFirstNode(&NewScriptFile->CommandList)
1731 ; !IsNull(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link)
1865 NewScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)GetNextNode(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link);
1866 if (!IsNull(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link)) {
1871 NewScriptFile->CurrentCommand = (SCRIPT_COMMAND_LIST *)GetNextNode(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link);
1872 if (!IsNull(&NewScriptFile->CommandList, &NewScriptFile->CurrentCommand->Link)) {
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Library/
H A DShellCommandLib.h401 LIST_ENTRY CommandList; ///< The script converted to a list of commands (SCRIPT_COMMAND_LIST objects). member in struct:__anon12762
402 SCRIPT_COMMAND_LIST *CurrentCommand; ///< The command currently being operated. If !=NULL must be a member of CommandList.
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/
H A DAhciMode.c485 @param CommandList The command list will be used for the transfer.
501 IN EFI_AHCI_COMMAND_LIST *CommandList,
549 CommandList->AhciCmdA = 1;
550 CommandList->AhciCmdP = 1;
551 CommandList->AhciCmdC = (DataLength == 0) ? 1 : 0;
560 CommandList->AhciCmdPrdtl = PrdtNumber;
585 CommandList,
495 AhciBuildCommand( IN EFI_PCI_IO_PROTOCOL *PciIo, IN EFI_AHCI_REGISTERS *AhciRegisters, IN UINT8 Port, IN UINT8 PortMultiplier, IN EFI_AHCI_COMMAND_FIS *CommandFis, IN EFI_AHCI_COMMAND_LIST *CommandList, IN EFI_AHCI_ATAPI_COMMAND *AtapiCommand OPTIONAL, IN UINT8 AtapiCommandLength, IN UINT8 CommandSlotNumber, IN OUT VOID *DataPhysicalAddr, IN UINT32 DataLength ) argument
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellCommandLib/
H A DUefiShellCommandLib.c791 while (!IsListEmpty (&Script->CommandList)) {
792 Script->CurrentCommand = (SCRIPT_COMMAND_LIST *)GetFirstNode(&Script->CommandList);

Completed in 2026 milliseconds