Home | History | Annotate | Download | only in BootManagerPolicyDxe

Lines Matching refs:Devices

32   @retval EFI_SUCCESS      Network devices are connected.

45 EFI_DEVICE_PATH_PROTOCOL *Devices;
56 Devices = NULL;
62 TempDevicePath = Devices;
63 Devices = AppendDevicePathInstance (Devices, SingleDevice);
69 if (Devices != NULL) {
74 GetDevicePathSize (Devices),
75 Devices
81 FreePool (Devices);
84 return (Devices == NULL) ? EFI_DEVICE_ERROR : EFI_SUCCESS;
88 Connect the network devices.
91 @retval EFI_DEVICE_ERROR Network devices were not connected due to an error.
100 EFI_DEVICE_PATH_PROTOCOL *Devices;
106 GetVariable2 (mNetworkDeviceList, &gEfiCallerIdGuid, (VOID **) &Devices, NULL);
107 TempDevicePath = Devices;
116 if (Devices != NULL) {
117 FreePool (Devices);
124 // Cached network devices list doesn't exist or is NOT valid.
185 Connect a class of devices using the platform Boot Manager policy.
188 Manager connect a class of devices.
219 @param[in] Class A pointer to an EFI_GUID that represents a class of devices
222 @retval EFI_SUCCESS At least one devices of the Class was connected.
223 @retval EFI_DEVICE_ERROR Devices were not connected due to an error.