HomeSort by relevance Sort by last modified time
    Searched refs:DevPath (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
DevicePath.c 21 @param DevPath A pointer to the device path structure.
29 IN EFI_DEVICE_PATH_PROTOCOL *DevPath
32 return ConvertDevicePathToText (DevPath, TRUE, TRUE);
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
SecureBootConfigDevicePath.c 21 @param[in] DevPath A pointer to the device path structure.
29 IN EFI_DEVICE_PATH_PROTOCOL *DevPath
33 DevPath,
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/
DevicePath.c 21 @param DevPath A pointer to the device path structure.
29 IN EFI_DEVICE_PATH_PROTOCOL *DevPath
32 return ConvertDevicePathToText (DevPath, TRUE, TRUE);
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
dpath.c 47 EFI_DEVICE_PATH *Start, *Next, *DevPath;
50 DevPath = *DevicePath;
51 Start = DevPath;
53 if (!DevPath) {
62 Next = NextDevicePathNode(DevPath);
64 if (IsDevicePathEndType(DevPath)) {
72 DEBUG((D_ERROR, "DevicePathInstance: DevicePath %x Size %d", *DevicePath, ((UINT8 *) DevPath) - ((UINT8 *) Start) ));
73 DumpHex (0, 0, ((UINT8 *) DevPath) - ((UINT8 *) Start), Start);
77 DevPath = Next;
80 ASSERT (DevicePathSubType(DevPath) == END_ENTIRE_DEVICE_PATH_SUBTYPE |
    [all...]
lib.h 75 IN EFI_DEVICE_PATH *DevPath
hand.c 120 EFI_DEVICE_PATH *Start, *Next, *DevPath;
202 DevPath = DevicePath;
203 Start = DevPath;
211 if ((DevicePathType(DevPath) == MEDIA_DEVICE_PATH) &&
212 (DevicePathSubType(DevPath) == MEDIA_HARDDRIVE_DP)) {
214 HardDriveDevicePath = (HARDDRIVE_DEVICE_PATH *)(DevPath);
218 Next = NextDevicePathNode(DevPath);
242 if (IsDevicePathEnd(DevPath)) {
246 DevPath = NextDevicePathNode(DevPath);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
DevicePath.c 57 EFI_DEVICE_PATH_PROTOCOL *DevPath;
72 DevPath = *DevicePath;
73 while (!IsDevicePathEndType (DevPath)) {
74 DevPath = NextDevicePathNode (DevPath);
81 *Size = ((UINTN) DevPath - (UINTN) (*DevicePath)) + sizeof (EFI_DEVICE_PATH_PROTOCOL);
87 Temp = DevPath->SubType;
88 DevPath->SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE;
90 DevPath->SubType = Temp;
93 // If DevPath is the end of an entire device path, then another instance
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/
RtDevicePath.c 154 EFI_DEVICE_PATH_PROTOCOL *DevPath;
169 DevPath = *DevicePath;
170 while (!IsDevicePathEndType (DevPath)) {
171 DevPath = NextDevicePathNode (DevPath);
178 *Size = ((UINTN) DevPath - (UINTN) (*DevicePath)) + sizeof (EFI_DEVICE_PATH_PROTOCOL);
184 Temp = DevPath->SubType;
185 DevPath->SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE;
187 DevPath->SubType = Temp;
190 // If DevPath is the end of an entire device path, then another instance
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
DevicePathToText.c 68 @param DevPath The input device path structure.
80 IN VOID *DevPath,
87 Pci = DevPath;
95 @param DevPath The input device path structure.
107 IN VOID *DevPath,
114 Pccard = DevPath;
122 @param DevPath The input device path structure.
134 IN VOID *DevPath,
141 MemMap = DevPath;
155 @param DevPath The input device path structure.
    [all...]
DevicePathUtilities.c 668 EFI_DEVICE_PATH_PROTOCOL *DevPath;
686 DevPath = *DevicePath;
687 while (!IsDevicePathEndType (DevPath)) {
688 DevPath = NextDevicePathNode (DevPath);
694 *Size = ((UINTN) DevPath - (UINTN) (*DevicePath)) + sizeof (EFI_DEVICE_PATH_PROTOCOL);
699 Temp = DevPath->SubType;
700 DevPath->SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE;
702 DevPath->SubType = Temp;
705 // If DevPath is the end of an entire device path, then another instance
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Include/
RtDevicePath.h 78 IN EFI_DEVICE_PATH_PROTOCOL *DevPath
88 DevPath - The pointer to the device path data.
144 IN EFI_DEVICE_PATH_PROTOCOL *DevPath
152 DevPath - A pointer to a device path data structure.
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerUiLib/
BmLib.c 76 @param DevPath The device Path.
85 IN EFI_DEVICE_PATH_PROTOCOL *DevPath
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDevicePathLib/
UefiDevicePathLib.c 323 EFI_DEVICE_PATH_PROTOCOL *DevPath;
337 DevPath = *DevicePath;
338 while (!IsDevicePathEndType (DevPath)) {
339 DevPath = NextDevicePathNode (DevPath);
345 *Size = ((UINTN) DevPath - (UINTN) (*DevicePath)) + sizeof (EFI_DEVICE_PATH_PROTOCOL);
350 Temp = DevPath->SubType;
351 DevPath->SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE;
353 DevPath->SubType = Temp;
356 // If DevPath is the end of an entire device path, then another instance
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDriver1CommandsLib/
Connect.c 200 EFI_DEVICE_PATH_PROTOCOL *DevPath;
214 DevPath = NULL;
221 Status = gRT->GetVariable((CHAR16*)Key, (EFI_GUID*)&gEfiGlobalVariableGuid, NULL, &Length, DevPath);
223 DevPath = AllocateZeroPool(Length);
224 if (DevPath == NULL) {
227 Status = gRT->GetVariable((CHAR16*)Key, (EFI_GUID*)&gEfiGlobalVariableGuid, NULL, &Length, DevPath);
229 if (DevPath != NULL) {
230 FreePool (DevPath);
240 CopyOfDevPath = DevPath;
250 if (DevPath != NULL) {
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
Dblk.c 22 @param[in] DevPath The device path to get the blocks from.
30 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevPath,
44 Status = gBS->LocateDevicePath(&gEfiBlockIoProtocolGuid, (EFI_DEVICE_PATH_PROTOCOL **)&DevPath, &BlockIoHandle);
111 EFI_DEVICE_PATH_PROTOCOL *DevPath;
186 DevPath = (EFI_DEVICE_PATH_PROTOCOL*)gEfiShellProtocol->GetDevicePathFromMap(BlockName);
187 if (gBS->LocateDevicePath(&gEfiBlockIoProtocolGuid, &DevPath, NULL) == EFI_NOT_FOUND) {
SetVar.c 79 EFI_DEVICE_PATH_PROTOCOL *DevPath;
86 DevPath = NULL;
270 DevPath = ConvertTextToDevicePath(Data);
271 if (DevPath == NULL) {
275 Status = gRT->SetVariable((CHAR16*)VariableName, &Guid, Attributes, GetDevicePathSize(DevPath), DevPath);
296 if (DevPath != NULL) {
297 FreePool(DevPath);
  /device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/
PciBus.c 162 Node.DevPath = RemainingDevicePath;
163 if (Node.DevPath->Type != HARDWARE_DEVICE_PATH ||
164 Node.DevPath->SubType != HW_PCI_DP ||
165 DevicePathNodeLength(Node.DevPath) != sizeof(PCI_DEVICE_PATH)) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciBus.c 150 Node.DevPath = RemainingDevicePath;
151 if (Node.DevPath->Type != HARDWARE_DEVICE_PATH ||
152 Node.DevPath->SubType != HW_PCI_DP ||
153 DevicePathNodeLength(Node.DevPath) != sizeof(PCI_DEVICE_PATH)) {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Include/Library/
GenericBdsLib.h 582 @param DevPath A pointer to the device path structure.
590 IN EFI_DEVICE_PATH_PROTOCOL *DevPath
606 IN VOID *DevPath
901 @param DevPath The Device path in a boot option.
911 IN EFI_DEVICE_PATH_PROTOCOL *DevPath,
922 @param DevPath The Device path in a boot option.
933 IN EFI_DEVICE_PATH_PROTOCOL *DevPath,
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Library/DevicePathTextLib/
DevicePathTextLib.c 33 @param DevPath The input device path structure.
48 IN VOID *DevPath,
56 Vendor = (EMU_VENDOR_DEVICE_PATH_NODE *)DevPath;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Map.c 295 EFI_DEVICE_PATH_PROTOCOL *DevPath;
310 DevPath = DevicePathFromHandle(Handle);
311 DevPathCopy = DevPath;
395 DevPathString = ConvertDevicePathToText(DevPath, TRUE, FALSE);
412 MediaType = GetDeviceMediaType(DevPath);
414 Removable = IsRemoveableDevice(DevPath);
463 EFI_DEVICE_PATH_PROTOCOL *DevPath;
468 DevPath = DevicePathFromHandle(Handle);
469 DevPathCopy = DevPath;
872 CONST EFI_DEVICE_PATH_PROTOCOL *DevPath;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ShellManParser.c 821 EFI_DEVICE_PATH_PROTOCOL *DevPath;
842 DevPath = NULL;
867 DevPath = AppendDevicePath (ShellInfoObject.ImageDevPath, FileDevPath);
868 Status = InternalOpenFileDevicePath(DevPath, &FileHandle, EFI_FILE_MODE_READ, 0);
870 SHELL_FREE_NON_NULL(DevPath);
906 DevPath = ShellInfoObject.NewEfiShellProtocol->GetDevicePathFromFilePath(CmdFilePathName);
907 Status = gBS->LoadImage(FALSE, gImageHandle, DevPath, NULL, 0, &CmdFileImgHandle);
1000 SHELL_FREE_NON_NULL(DevPath);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Universal/MmcDxe/
Mmc.c 214 Node.DevPath = RemainingDevicePath;
215 if (Node.DevPath->Type != HARDWARE_DEVICE_PATH ||
216 Node.DevPath->SubType != HW_VENDOR_DP ||
217 DevicePathNodeLength(Node.DevPath) != sizeof(VENDOR_DEVICE_PATH)) {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/
IsaBus.c 609 Node.DevPath.Type = ACPI_DEVICE_PATH;
610 Node.DevPath.SubType = ACPI_DP;
611 SetDevicePathNodeLength (&Node.DevPath, sizeof (ACPI_HID_DEVICE_PATH));
617 &Node.DevPath
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiExtScsiPassThru.c 222 Node->DevPath.Type = MESSAGING_DEVICE_PATH;
223 Node->DevPath.SubType = MSG_ISCSI_DP;
224 SetDevicePathNodeLength (&Node->DevPath, (UINT16)DevPathNodeLen);

Completed in 705 milliseconds

1 2 3 4