Searched defs:Configuration (Results 1 - 25 of 28) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/
H A DConfiguration.py2 # This file is used to define class Configuration
22 ## Configuration
28 class Configuration(object): class in inherits:object
H A DEcc.py23 from Configuration import Configuration namespace
101 EccGlobalData.gConfig = Configuration(self.ConfigFile)
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DriverSampleDxe/
H A DDriverSample.h83 DRIVER_SAMPLE_CONFIGURATION Configuration; member in struct:__anon11167
H A DDriverSample.c289 &PrivateData->Configuration
299 PasswordMaxSize = sizeof (PrivateData->Configuration.WhatIsThePassword2);
304 if (PrivateData->Configuration.WhatIsThePassword2[Index] != 0) {
335 if (CompareMem (EncodedPassword, PrivateData->Configuration.WhatIsThePassword2, PasswordMaxSize) != 0) {
370 DRIVER_SAMPLE_CONFIGURATION *Configuration; local
382 &PrivateData->Configuration
391 Password = &PrivateData->Configuration.WhatIsThePassword2[0];
392 PasswordSize = sizeof (PrivateData->Configuration.WhatIsThePassword2);
409 Configuration = AllocateZeroPool (sizeof (DRIVER_SAMPLE_CONFIGURATION));
410 ASSERT (Configuration !
1031 RouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
1278 DRIVER_SAMPLE_CONFIGURATION *Configuration; local
1794 DRIVER_SAMPLE_CONFIGURATION *Configuration; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UserProfileManagerDxe/
H A DUserProfileManager.c785 @param Configuration A null-terminated Unicode string in <ConfigResp> format.
792 @retval EFI_INVALID_PARAMETER Configuration is NULL.
800 IN CONST EFI_STRING Configuration,
804 if (Configuration == NULL || Progress == NULL) {
798 FakeRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4ConfigDxe/
H A DIp4ConfigNv.c519 Input is a Configuration, which has the routing data for this
528 @param[in] Configuration A null-terminated Unicode string in
554 IN CONST EFI_STRING Configuration,
566 if (Configuration == NULL || Progress == NULL) {
575 *Progress = Configuration;
582 if (HiiIsConfigHdrMatch (Configuration, &gNicIp4ConfigNvDataGuid, EFI_NIC_IP4_CONFIG_VARIABLE)) {
594 Configuration,
605 } else if (HiiIsConfigHdrMatch (Configuration, &gEfiNicIp4ConfigVariableGuid, EFI_NIC_IP4_CONFIG_VARIABLE)) {
615 Configuration,
552 Ip4DeviceRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/VlanConfigDxe/
H A DVlanConfigImpl.c79 VLAN_CONFIGURATION Configuration; local
112 ZeroMem (&Configuration, sizeof (VLAN_CONFIGURATION));
113 BufferSize = sizeof (Configuration);
133 (UINT8 *) &Configuration,
162 @param[in] Configuration A null-terminated Unicode string in <ConfigResp>
171 @retval EFI_INVALID_PARAMETER Configuration is NULL.
180 IN CONST EFI_STRING Configuration,
184 if (Configuration == NULL || Progress == NULL) {
188 *Progress = Configuration;
189 if (!HiiIsConfigHdrMatch (Configuration,
178 VlanRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
231 VLAN_CONFIGURATION *Configuration; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Tcg/TcgConfigDxe/
H A DTcgConfigImpl.c153 TCG_CONFIGURATION Configuration; local
182 ZeroMem (&Configuration, sizeof (TCG_CONFIGURATION));
184 Configuration.MorState = PcdGetBool (PcdMorEnable);
185 Configuration.TpmOperation = PHYSICAL_PRESENCE_ENABLE;
186 Configuration.HideTpm = (BOOLEAN) (PcdGetBool (PcdHideTpmSupport) && PcdGetBool (PcdHideTpm));
190 Configuration.OriginalHideTpm = PrivateData->HideTpm;
208 Configuration.TpmEnable = TpmEnable;
209 Configuration.TpmActivate = TpmActivate;
214 BufferSize = sizeof (Configuration);
234 (UINT8 *) &Configuration,
277 TcgRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciIo.c67 @param BarIndex The BAR index of the standard PCI Configuration header to use as the
127 Verifies access to a PCI Configuration Header.
184 @param BarIndex The BAR index of the standard PCI Configuration header to use as the
291 @param BarIndex The BAR index of the standard PCI Configuration header to use as the
393 @param BarIndex The BAR index of the standard PCI Configuration header to use as the
472 @param BarIndex The BAR index of the standard PCI Configuration header to use as the
550 @param BarIndex The BAR index of the standard PCI Configuration header to use as the
628 @param BarIndex The BAR index of the standard PCI Configuration header to use as the
845 @param DestBarIndex The BAR index in the standard PCI Configuration header to use as the
849 @param SrcBarIndex The BAR index in the standard PCI Configuration heade
1783 UINT8 *Configuration; local
[all...]
H A DPciEnumerator.c160 EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *Configuration; local
193 (VOID **) &Configuration
200 if (Configuration == NULL || Configuration->Desc == ACPI_END_TAG_DESCRIPTOR) {
203 RootBridgeDev->BusNumberRanges = Configuration;
208 for (Configuration1 = Configuration; Configuration1->Desc != ACPI_END_TAG_DESCRIPTOR; Configuration1++) {
233 StartBusNumber = (UINT8) (Configuration->AddrRangeMin);
276 while (Configuration->AddrRangeMin + Configuration->AddrLen - 1 < SubBusNumber) {
277 Configuration
1104 UINT8 *Configuration; local
[all...]
H A DPciEnumeratorSupport.c1270 VOID *Configuration; local
1273 Configuration = NULL;
1299 &Configuration
1304 if (EFI_ERROR (Status) || Configuration == NULL ) {
1311 Ptr = (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *) Configuration;
1381 FreePool (Configuration);
2321 Status = PciRootBridgeIo->Configuration (PciRootBridgeIo, (VOID **) &Descriptors);
H A DPciLib.c1425 EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *Configuration; local
1493 (VOID **) &Configuration
1502 StartBusNumber = (UINT8) (Configuration->AddrRangeMin);
1509 FreePool (Configuration);
1586 Status = PciRootBridgeIo->Configuration (PciRootBridgeIo, (VOID **) &Descriptors);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/IScsiDxe/
H A DIScsiConfig.c570 Input is a Configuration, which has the routing data for this
579 @param[in] Configuration A null-terminated Unicode string in
605 IN CONST EFI_STRING Configuration,
609 if (Configuration == NULL || Progress == NULL) {
617 if (!HiiIsConfigHdrMatch (Configuration, &gIp4IScsiConfigGuid, mVendorStorageName)) {
618 *Progress = Configuration;
622 *Progress = Configuration + StrLen (Configuration);
603 IScsiFormRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DPciRootBridgeIo.h5 and PCI Configuration cycles on a PCI Root Bridge. It also provides services to perform
441 EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_CONFIGURATION Configuration; member in struct:_EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/PciHostBridgeDxe/
H A DPciRootBridgeIo.c26 RESOURCE_CONFIGURATION Configuration = { variable
282 The PCI Configuration operations are carried out exactly as requested. The caller is responsible for
315 The PCI Configuration operations are carried out exactly as requested. The caller is responsible for
714 Protocol->Configuration = RootBridgeIoConfiguration;
1608 The PCI Configuration operations are carried out exactly as requested. The caller is responsible for
1644 The PCI Configuration operations are carried out exactly as requested. The caller is responsible for
2152 Configuration.SpaceDesp[Index].AddrRangeMin = PrivateData->ResAllocNode[Index].Base;
2153 Configuration.SpaceDesp[Index].AddrRangeMax = PrivateData->ResAllocNode[Index].Base + PrivateData->ResAllocNode[Index].Length - 1;
2154 Configuration.SpaceDesp[Index].AddrLen = PrivateData->ResAllocNode[Index].Length;
2158 *Resources = &Configuration;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/
H A DPwdCredentialProvider.c626 @param Configuration A null-terminated Unicode string in <ConfigResp> format.
633 @retval EFI_INVALID_PARAMETER Configuration is NULL.
641 IN CONST EFI_STRING Configuration,
645 if (Configuration == NULL || Progress == NULL) {
639 FakeRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Protocol/
H A DPciRootBridgeIo.h5 and PCI Configuration cycles on a PCI Root Bridge. It also provides services to perform
428 EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_CONFIGURATION Configuration; member in struct:_EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/
H A DFrontPage.c119 @param Configuration A null-terminated Unicode string in <ConfigResp> format.
126 @retval EFI_INVALID_PARAMETER Configuration is NULL.
134 IN CONST EFI_STRING Configuration,
138 if (Configuration == NULL || Progress == NULL) {
142 *Progress = Configuration;
143 if (!HiiIsConfigHdrMatch (Configuration, &gBootMaintFormSetGuid, mBootMaintStorageName)
144 && !HiiIsConfigHdrMatch (Configuration, &gFileExploreFormSetGuid, mFileExplorerStorageName)) {
148 *Progress = Configuration + StrLen (Configuration);
132 FakeRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IScsiDxe/
H A DIScsiConfig.c1986 Input is a Configuration, which has the routing data for this
1996 @param[in] Configuration A null-terminated Unicode string in
2027 IN CONST EFI_STRING Configuration,
2031 if (This == NULL || Configuration == NULL || Progress == NULL) {
2039 if (!HiiIsConfigHdrMatch (Configuration, &gIScsiConfigGuid, mVendorStorageName)) {
2040 *Progress = Configuration;
2044 *Progress = Configuration + StrLen (Configuration);
2025 IScsiFormRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6ConfigNv.c1533 Input is a Configuration, which has the routing data for this
1542 @param[in] Configuration A null-terminated Unicode string in
1568 IN CONST EFI_STRING Configuration,
1572 if (This == NULL || Configuration == NULL || Progress == NULL) {
1580 if (!HiiIsConfigHdrMatch (Configuration, &gIp6ConfigNvDataGuid, mIp6ConfigStorageName)) {
1581 *Progress = Configuration;
1585 *Progress = Configuration + StrLen (Configuration);
1566 Ip6FormRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/HiiDatabaseDxe/
H A DConfigRouting.c20 Calculate the number of Unicode characters of the incoming Configuration string,
3177 @param Configuration A null-terminated Unicode string in
3190 @retval EFI_INVALID_PARAMETER Passing in a NULL for the Configuration parameter
3200 IN CONST EFI_STRING Configuration,
3225 if (Configuration == NULL) {
3231 StringPtr = Configuration;
3251 if (StringPtr == Configuration) {
3691 the Configuration string, only the BlockSize
3926 @param Configuration A null-terminated Unicode string in
3964 IN CONST EFI_STRING Configuration,
3198 HiiConfigRoutingRouteConfig( IN CONST EFI_HII_CONFIG_ROUTING_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
3962 HiiGetAltCfg( IN CONST EFI_HII_CONFIG_ROUTING_PROTOCOL *This, IN CONST EFI_STRING Configuration, IN CONST EFI_GUID *Guid, IN CONST EFI_STRING Name, IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath, IN CONST UINT16 *AltCfgId, OUT EFI_STRING *AltCfgResp ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/PlatformDriOverrideDxe/
H A DPlatDriOverrideDxe.c1237 @param Configuration A null-terminated Unicode string in <ConfigRequest> format.
1244 @retval EFI_INVALID_PARAMETER Configuration is NULL.
1252 IN CONST EFI_STRING Configuration,
1260 if (Configuration == NULL || Progress == NULL) {
1263 *Progress = Configuration;
1265 if (!HiiIsConfigHdrMatch (Configuration, &gPlatformOverridesManagerGuid, mVariableName)) {
1269 *Progress = Configuration + StrLen (Configuration);
1584 // There should only be one Form Configuration protocol
1250 PlatOverMngrRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/
H A DUserIdentifyManager.c1660 Publish current user information into EFI System Configuration Table.
1663 into the EFI System Configuration Table. Currently, only the user identifier and user
2732 @param Configuration A null-terminated Unicode string in <ConfigResp> format.
2739 @retval EFI_INVALID_PARAMETER Configuration is NULL.
2747 IN CONST EFI_STRING Configuration,
2751 if (Configuration == NULL || Progress == NULL) {
2745 FakeRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
H A DSecureBootConfigImpl.c2148 SECUREBOOT_CONFIGURATION Configuration; local
2163 ZeroMem (&Configuration, sizeof (Configuration));
2172 // Get Configuration from Variable.
2174 SecureBootExtractConfigFromVariable (&Configuration);
2198 (UINT8 *) &Configuration,
2227 @param[in] Configuration A null-terminated Unicode string in <ConfigResp>
2236 @retval EFI_INVALID_PARAMETER Configuration is NULL.
2245 IN CONST EFI_STRING Configuration,
2249 if (Configuration
2243 SecureBootRouteConfig( IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This, IN CONST EFI_STRING Configuration, OUT EFI_STRING *Progress ) argument
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dntddndis.h163 NDIS_802_11_CONFIGURATION Configuration; member in struct:_NDIS_WLAN_BSSID

Completed in 139 milliseconds

12