HomeSort by relevance Sort by last modified time
    Searched defs:RemainingDevicePath (Results 1 - 14 of 14) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmConnect.c 121 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
132 // Start the real work of connect with RemainingDevicePath
139 // RemainingDevicePath.
141 RemainingDevicePath = DevicePathToConnect;
142 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &RemainingDevicePath, &Handle);
167 // Connect all drivers that apply to Handle and RemainingDevicePath,
171 // do dispatch, because partial RemainingDevicePath may be in the new FV
173 // 1. If the connect fail, RemainingDevicepath and handle will not
176 // 2. If the connect success, the RemainingDevicepath and handle will
180 Status = gBS->ConnectController (Handle, NULL, RemainingDevicePath, FALSE);
    [all...]
BmBoot.c 575 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
583 RemainingDevicePath = NextDevicePathNode (ShortformNode);
588 FullDevicePath = AppendDevicePath (DevicePathFromHandle (Handles[Index]), RemainingDevicePath);
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConnect.c 94 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
134 // Start the real work of connect with RemainingDevicePath
141 // RemainingDevicePath.
143 RemainingDevicePath = Instance;
144 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &RemainingDevicePath, &Handle);
172 // Connect all drivers that apply to Handle and RemainingDevicePath,
177 // RemainingDevicepath may be in the new FV
179 // 1. If the connect fail, RemainingDevicepath and handle will not
182 // 2. If the connect success, the RemainingDevicepath and handle will
186 gBS->ConnectController (Handle, NULL, RemainingDevicePath, FALSE);
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConnect.c 94 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
134 // Start the real work of connect with RemainingDevicePath
141 // RemainingDevicePath.
143 RemainingDevicePath = Instance;
144 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &RemainingDevicePath, &Handle);
172 // Connect all drivers that apply to Handle and RemainingDevicePath,
177 // RemainingDevicepath may be in the new FV
179 // 1. If the connect fail, RemainingDevicepath and handle will not
182 // 2. If the connect success, the RemainingDevicepath and handle will
186 gBS->ConnectController (Handle, NULL, RemainingDevicePath, FALSE);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/SdDxe/
SdDxe.c 289 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
296 RemainingDevicePath = NULL;
327 RemainingDevicePath = NewDevicePath;
328 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &RemainingDevicePath, &DeviceHandle);
329 if (!EFI_ERROR (Status) && (DeviceHandle != NULL) && IsDevicePathEnd(RemainingDevicePath)) {
435 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This
440 by RemainingDevicePath are both supported by this
444 RemainingDevicePath is supported by the driver specified by This.
446 RemainingDevicePath is already being managed by the driver
449 RemainingDevicePath is already being managed by a different
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDriver1CommandsLib/
Connect.c 35 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
46 RemainingDevicePath = DevicePathToConnect;
47 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &RemainingDevicePath, &Handle);
54 Status = gBS->ConnectController (Handle, NULL, RemainingDevicePath, FALSE);
58 } while (!EFI_ERROR (Status) && !IsDevicePathEnd (RemainingDevicePath) );
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaBusDxe/
AtaBus.c 229 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
235 RemainingDevicePath = NULL;
253 RemainingDevicePath = DevicePath;
254 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &RemainingDevicePath, &DeviceHandle);
255 if (!EFI_ERROR (Status) && (DeviceHandle != NULL) && IsDevicePathEnd(RemainingDevicePath)) {
566 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This
571 by RemainingDevicePath are both supported by this
575 RemainingDevicePath is supported by the driver specified by This.
577 RemainingDevicePath is already being managed by the driver
580 RemainingDevicePath is already being managed by a different
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/
NvmExpress.c 74 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
209 RemainingDevicePath = DevicePath;
210 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &RemainingDevicePath, &DeviceHandle);
211 if (!EFI_ERROR (Status) && (DeviceHandle != NULL) && IsDevicePathEnd(RemainingDevicePath)) {
704 @param[in] RemainingDevicePath A pointer to the remaining portion of a device path. This
709 by RemainingDevicePath are both supported by this
713 RemainingDevicePath is supported by the driver specified by This.
715 RemainingDevicePath is already being managed by the driver
718 RemainingDevicePath is already being managed by a different
722 RemainingDevicePath is not supported by the driver specified by This.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Scsi/ScsiBusDxe/
ScsiBus.c 164 @param RemainingDevicePath Optional parameter use to pick a specific child
177 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
208 // Check if RemainingDevicePath is NULL or the End of Device Path Node,
211 if ((RemainingDevicePath == NULL) || IsDevicePathEnd (RemainingDevicePath)) {
213 // Close protocol regardless of RemainingDevicePath validation
224 // If RemainingDevicePath isn't the End of Device Path Node, check its validation
226 Status = ExtPassThru->GetTargetLun (ExtPassThru, RemainingDevicePath, &TargetId, &Lun);
228 // Close protocol regardless of RemainingDevicePath validation
245 // 2. ExtPassThru exists but RemainingDevicePath is invalid.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/EmmcDxe/
EmmcDxe.c 413 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
433 RemainingDevicePath = DevicePath;
434 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &RemainingDevicePath, &DeviceHandle);
435 if (!EFI_ERROR (Status) && (DeviceHandle != NULL) && IsDevicePathEnd(RemainingDevicePath)) {
517 @param[in] RemainingDevicePath The pointer to the remaining device path.
532 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
548 RemainingDevicePath = NULL;
626 if (RemainingDevicePath == NULL) {
633 } else if (!IsDevicePathEnd (RemainingDevicePath)) {
637 Node = (EFI_DEV_PATH *) RemainingDevicePath;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGlueReportStatusCodeLib.h 160 UINT8 *RemainingDevicePath;
  /device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/FtdiUsbSerialDxe/
FtdiUsbSerialDriver.c 855 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
951 RemainingDevicePath = UsbSerialDevice->DevicePath;
952 while (!IsDevicePathEnd (RemainingDevicePath)) {
953 Uart = (UART_DEVICE_PATH *) NextDevicePathNode (RemainingDevicePath);
963 RemainingDevicePath = NextDevicePathNode (RemainingDevicePath);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/PlatformDriOverrideDxe/
PlatDriOverrideLib.c 456 EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath;
490 // Start the real work of connect with RemainingDevicePath
497 // RemainingDevicePath.
499 RemainingDevicePath = Instance;
500 Status = gBS->LocateDevicePath (&gEfiDevicePathProtocolGuid, &RemainingDevicePath, &Handle);
517 // Connect all drivers that apply to Handle and RemainingDevicePath,
522 // RemainingDevicepath may be in the new FV
524 // 1. If the connect fails, RemainingDevicepath and handle will not
527 // 2. If the connect succeeds, the RemainingDevicepath and handle will
531 gBS->ConnectController (Handle, NULL, RemainingDevicePath, FALSE);
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/BdsLib/
BdsFilePath.c 348 OUT EFI_DEVICE_PATH_PROTOCOL **RemainingDevicePath
418 Status = BdsConnectAndUpdateDevicePath (&NewDevicePath, Handle, RemainingDevicePath);
424 if (RemainingDevicePath) {
425 *RemainingDevicePath = Remaining;
436 @param RemainingDevicePath Remaining DevicePath nodes that do not match the driver DevicePath
447 OUT EFI_DEVICE_PATH_PROTOCOL **RemainingDevicePath
450 return BdsConnectAndUpdateDevicePath (&DevicePath, Handle, RemainingDevicePath);
457 IN EFI_DEVICE_PATH *RemainingDevicePath
465 return (!EFI_ERROR (Status) && IS_DEVICE_PATH_NODE (RemainingDevicePath, MEDIA_DEVICE_PATH, MEDIA_FILEPATH_DP));
472 IN EFI_DEVICE_PATH *RemainingDevicePath,
    [all...]

Completed in 308 milliseconds