Searched defs:Supported (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DDriverBinding.h91 3. Prior to calling Start(), the Supported() function for the driver specified by This must
92 have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS.
164 EFI_DRIVER_BINDING_SUPPORTED Supported; member in struct:_EFI_DRIVER_BINDING_PROTOCOL
172 /// the order that driver's Supported() service will be used when
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Protocol/
H A DDriverBinding.h93 3. Prior to calling Start(), the Supported() function for the driver specified by This must
94 have been called with the same calling parameters, and Supported() must have returned EFI_SUCCESS.
166 EFI_DRIVER_BINDING_SUPPORTED Supported; member in struct:_EFI_DRIVER_BINDING_PROTOCOL
174 /// the order that driver's Supported() service will be used when
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/UefiHiiLib/
H A DHiiString.c67 CHAR8 *Supported; local
96 for (Supported = AllocatedLanguages; *Supported != '\0'; ) {
100 Language = Supported;
105 for (; *Supported != 0 && *Supported != ';'; Supported++);
106 if (*Supported != 0) {
107 *(Supported++) = '\0';
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/FrameworkUefiLib/
H A DUefiLib.c621 // Make sure Language is in the set of Supported Languages
723 // Make sure Language is in the set of Supported Languages
1334 CONST CHAR8 *Supported; local
1361 for (Supported = SupportedLanguages; *Supported != '\0'; Supported += CompareLength) {
1367 // Skip ';' characters in Supported
1369 for (; *Supported != '\0' && *Supported == ';'; Supported
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiLib/
H A DUefiLib.c643 // Make sure Language is in the set of Supported Languages
745 // Make sure Language is in the set of Supported Languages
1356 CONST CHAR8 *Supported; local
1383 for (Supported = SupportedLanguages; *Supported != '\0'; Supported += CompareLength) {
1389 // Skip ';' characters in Supported
1391 for (; *Supported != '\0' && *Supported == ';'; Supported
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Variable/EmuRuntimeDxe/
H A DEmuVariable.c486 CHAR8 *Supported; local
489 Supported = SupportedLang;
505 for (CompareLength = 0; *Supported != ';' && *Supported != '\0'; CompareLength++) {
506 Supported++;
508 if ((*Supported == '\0') && (SubIndex != Index)) {
523 return CopyMem (mVariableModuleGlobal->PlatformLang, Supported - CompareLength, CompareLength);
528 // Skip ';' characters in Supported
530 for (; *Supported != '\0' && *Supported
586 CONST CHAR8 *Supported; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/PciHostBridgeDxe/
H A DPciRootBridgeIo.c490 @param Supported A pointer to the mask of attributes that this PCI root bridge
506 OUT UINT64 *Supported,
2011 @param Supported A pointer to the mask of attributes that this PCI root bridge
2027 OUT UINT64 *Supported,
2035 if (Attributes == NULL && Supported == NULL) {
2040 // Set the return value for Supported and Attributes
2042 if (Supported != NULL) {
2043 *Supported = PrivateData->Supports;
2025 RootBridgeIoGetAttributes( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, OUT UINT64 *Supported, OUT UINT64 *Attributes ) argument
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxVariable/
H A DEmuVariable.c525 CHAR8 *Supported; local
528 Supported = SupportedLang;
544 for (CompareLength = 0; *Supported != ';' && *Supported != '\0'; CompareLength++) {
545 Supported++;
547 if ((*Supported == '\0') && (SubIndex != Index)) {
562 return CopyMem (mVariableModuleGlobal->PlatformLang, Supported - CompareLength, CompareLength);
567 // Skip ';' characters in Supported
569 for (; *Supported != '\0' && *Supported
625 CONST CHAR8 *Supported; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Variable/RuntimeDxe/
H A DVariable.c968 CHAR8 *Supported; local
971 Supported = SupportedLang;
987 for (CompareLength = 0; *Supported != ';' && *Supported != '\0'; CompareLength++) {
988 Supported++;
990 if ((*Supported == '\0') && (SubIndex != Index)) {
1005 return CopyMem (mVariableModuleGlobal->PlatformLang, Supported - CompareLength, CompareLength);
1010 // Skip ';' characters in Supported
1012 for (; *Supported != '\0' && *Supported
1068 CONST CHAR8 *Supported; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
H A DVariable.c1418 CHAR8 *Supported; local
1421 Supported = SupportedLang;
1437 for (CompareLength = 0; *Supported != ';' && *Supported != '\0'; CompareLength++) {
1438 Supported++;
1440 if ((*Supported == '\0') && (SubIndex != Index)) {
1455 return CopyMem (Global->PlatformLang[VirtualMode], Supported - CompareLength, CompareLength);
1460 // Skip ';' characters in Supported
1462 for (; *Supported != '\0' && *Supported
1519 CONST CHAR8 *Supported; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/RuntimeDxe/
H A DVariable.c970 CHAR8 *Supported; local
973 Supported = SupportedLang;
989 for (CompareLength = 0; *Supported != ';' && *Supported != '\0'; CompareLength++) {
990 Supported++;
992 if ((*Supported == '\0') && (SubIndex != Index)) {
1007 return CopyMem (mVariableModuleGlobal->PlatformLang, Supported - CompareLength, CompareLength);
1012 // Skip ';' characters in Supported
1014 for (; *Supported != '\0' && *Supported
1070 CONST CHAR8 *Supported; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrUtilityLib.cpp3092 CONST CHAR8 *Supported; local
3110 for (Supported = SupportedLanguages; *Supported != '\0'; Supported += CompareLength) {
3112 // Skip ';' characters in Supported
3114 for (; *Supported != '\0' && *Supported == ';'; Supported++);
3116 // Determine the length of the next language code in Supported
3118 for (CompareLength = 0; Supported[CompareLengt
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Uefi/
H A DUefiPxe.h1115 /// Supported link speeds are in units of mega bits. Common ethernet
1169 /// Supported duplex. See PXE_DUPLEX_xxxxx #defines below.
1174 /// Supported loopback options. See PXE_LOOPBACK_xxxxx #defines below.
1373 PXE_UINT64 Supported; member in struct:s_pxe_db_statistics
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Uefi/
H A DUefiPxe.h1117 /// Supported link speeds are in units of mega bits. Common ethernet
1171 /// Supported duplex. See PXE_DUPLEX_xxxxx #defines below.
1176 /// Supported loopback options. See PXE_LOOPBACK_xxxxx #defines below.
1375 PXE_UINT64 Supported; member in struct:s_pxe_db_statistics

Completed in 97 milliseconds