HomeSort by relevance Sort by last modified time
    Searched refs:TmpDevicePath (Results 1 - 11 of 11) sorted by null

  /device/linaro/bootloader/edk2/SecurityPkg/Library/DxeDeferImageLoadLib/
DxeDeferImageLoadLib.c 287 EFI_DEVICE_PATH_PROTOCOL *TmpDevicePath;
316 TmpDevicePath = RootDevicePath;
317 while (!IsDevicePathEnd (TmpDevicePath)) {
318 if ((DevicePathType(TmpDevicePath) != MEDIA_DEVICE_PATH) || (DevicePathSubType(TmpDevicePath) != MEDIA_FILEPATH_DP)) {
321 Length += DevicePathNodeLength (TmpDevicePath) - sizeof (EFI_DEVICE_PATH_PROTOCOL);
322 TmpDevicePath = NextDevicePathNode (TmpDevicePath);
336 TmpDevicePath = RootDevicePath;
337 while (!IsDevicePathEnd (TmpDevicePath)) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Hand/
Locate.c 442 EFI_DEVICE_PATH_PROTOCOL *TmpDevicePath;
455 TmpDevicePath = SourcePath;
456 while (!IsDevicePathEnd (TmpDevicePath)) {
457 if (IsDevicePathEndInstance (TmpDevicePath)) {
464 TmpDevicePath = NextDevicePathNode (TmpDevicePath);
467 SourceSize = (UINTN) TmpDevicePath - (UINTN) SourcePath;
480 Status = CoreHandleProtocol (Handle, &gEfiDevicePathProtocolGuid, (VOID **)&TmpDevicePath);
491 Size = GetDevicePathSize (TmpDevicePath) - sizeof(EFI_DEVICE_PATH_PROTOCOL);
493 if ((Size <= SourceSize) && CompareMem (SourcePath, TmpDevicePath, (UINTN) Size) == 0) {
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/BdsLib/
BdsFilePath.c 112 EFI_DEVICE_PATH* TmpDevicePath;
129 TmpDevicePath = UsbIoDevicePath;
130 while (!IsDevicePathEnd (TmpDevicePath)) {
132 if (BdsIsRemovableUsb (TmpDevicePath)) {
133 if (TmpDevicePath->SubType == MSG_USB_WWID_DP) {
135 WwidDevicePath2 = (USB_WWID_DEVICE_PATH*)TmpDevicePath;
147 UsbClassDevicePath2 = (USB_CLASS_DEVICE_PATH*)TmpDevicePath;
161 TmpDevicePath = NextDevicePathNode (TmpDevicePath);
190 EFI_DEVICE_PATH* TmpDevicePath;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootConfig.c 41 EFI_DEVICE_PATH_PROTOCOL *TmpDevicePath;
51 TmpDevicePath = NULL;
99 TmpDevicePath = AppendDevicePathNode (Private->ParentDevicePath, (EFI_DEVICE_PATH_PROTOCOL*) Node);
101 if (TmpDevicePath == NULL) {
112 FreePool (TmpDevicePath);
119 NewDevicePath = AppendDevicePathNode (TmpDevicePath, (EFI_DEVICE_PATH_PROTOCOL*) Node);
121 FreePool (TmpDevicePath);
HttpBootClient.c 34 EFI_DEVICE_PATH_PROTOCOL *TmpDevicePath;
39 TmpDevicePath = NULL;
75 TmpDevicePath = AppendDevicePathNode (Private->ParentDevicePath, (EFI_DEVICE_PATH_PROTOCOL*) Node);
77 if (TmpDevicePath == NULL) {
87 FreePool (TmpDevicePath);
95 NewDevicePath = AppendDevicePathNode (TmpDevicePath, (EFI_DEVICE_PATH_PROTOCOL*) Node);
97 FreePool (TmpDevicePath);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DeviceManagerUiLib/
DeviceManager.c 353 EFI_DEVICE_PATH_PROTOCOL *TmpDevicePath;
376 TmpDevicePath = DevicePath;
384 if (IsMacAddressDevicePath(TmpDevicePath, NextShowFormId,&IsNeedAdd)) {
395 TmpDevicePath = DevicePath;
396 Status = gBS->LocateDevicePath(&gEfiDevicePathProtocolGuid, &TmpDevicePath, &ControllerHandle);
401 if (!IsDevicePathEnd (TmpDevicePath)) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/
UefiIfrCommon.c 270 EFI_DEVICE_PATH_PROTOCOL *TmpDevicePath;
302 gBS->HandleProtocol (Handle, &gEfiDevicePathProtocolGuid, (VOID **) &TmpDevicePath);
307 Size = EfiDevicePathSize (TmpDevicePath);
308 if ((Size == BufferSize) && EfiCompareMem (DevicePath, TmpDevicePath, Size) == 0) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/
MemoryProfileRecord.c 506 EFI_DEVICE_PATH_PROTOCOL *TmpDevicePath;
528 TmpDevicePath = DevicePathInstance;
529 while (!IsDevicePathEndType (TmpDevicePath)) {
530 TmpDevicePath = NextDevicePathNode (TmpDevicePath);
536 DevicePathSize = (UINTN)TmpDevicePath - (UINTN)DevicePathInstance;
545 DevicePathInstance = (EFI_DEVICE_PATH_PROTOCOL *)((UINTN)DevicePathInstance + DevicePathSize + DevicePathNodeLength(TmpDevicePath));
546 } while (DevicePathSubType (TmpDevicePath) != END_ENTIRE_DEVICE_PATH_SUBTYPE);
    [all...]