HomeSort by relevance Sort by last modified time
    Searched refs:DevicePath (Results 51 - 75 of 526) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerUiLib/
ConsoleOption.c 36 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
44 DevicePath = Multi;
45 DevicePathInst = GetNextDevicePathInstance (&DevicePath, &Size);
61 DevicePathInst = GetNextDevicePathInstance (&DevicePath, &Size);
89 Update Com Ports attributes from DevicePath
91 @param DevicePath DevicePath that contains Com ports
98 EFI_DEVICE_PATH_PROTOCOL *DevicePath
106 @param DevicePath The multi-instance device path.
115 IN OUT EFI_DEVICE_PATH_PROTOCOL *DevicePath,
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/Library/PlatformBootManagerLib/
PlatformBootManager.c 107 for (Index = 0; gPlatformConsole[Index].DevicePath != NULL; Index++) {
109 EfiBootManagerUpdateConsoleVariable (ConIn, gPlatformConsole[Index].DevicePath, NULL);
113 EfiBootManagerUpdateConsoleVariable (ConOut, gPlatformConsole[Index].DevicePath, NULL);
117 EfiBootManagerUpdateConsoleVariable (ErrOut, gPlatformConsole[Index].DevicePath, NULL);
168 @retval DevicePath for BootManagerMenuApp.
217 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
220 DevicePath = FvFilePath (FileGuid);
227 DevicePath,
232 FreePool (DevicePath);
247 @param DevicePath Input device path.
    [all...]
  /device/linaro/bootloader/edk2/PerformancePkg/Dp_App/
DpUtilities.c 34 #include <Protocol/DevicePath.h>
201 5. Image DevicePath
221 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
231 DevicePath = NULL;
317 DevicePath = LoadedImageDevicePath;
319 DevicePath = Image->FilePath;
322 if (DevicePath != NULL) {
324 // Try to get image GUID from image DevicePath
327 while (!IsDevicePathEndType (DevicePath)) {
328 NameGuid = EfiGetNameGuidFromFwVolDevicePathNode ((MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) DevicePath);
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiDpLib/
DpUtilities.c 35 #include <Protocol/DevicePath.h>
186 5. Image DevicePath
206 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
215 DevicePath = NULL;
285 DevicePath = LoadedImageDevicePath;
287 DevicePath = Image->FilePath;
290 if (DevicePath != NULL) {
292 // Try to get image GUID from image DevicePath
295 while (!IsDevicePathEndType (DevicePath)) {
296 NameGuid = EfiGetNameGuidFromFwVolDevicePathNode ((MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *) DevicePath);
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellCommandLib/
ConsistMapping.c 455 @param[in] DevicePath Ignored.
464 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
485 @param[in] DevicePath Ignored.
494 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
511 @param[in] DevicePath Ignored.
520 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
538 @param[in] DevicePath Ignored.
547 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
569 @param[in] DevicePath Ignored.
578 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/
IsaDriver.c 88 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
98 (VOID **) &DevicePath,
108 Status = gBS->LocateDevicePath (&gEfiPciIoProtocolGuid, &DevicePath, &PciHandle);
174 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
190 (VOID **) &DevicePath,
202 TempDevicePath = DevicePath;
240 InitializeIsaIoInstance (IsaIoDevice, DevicePath, Resources);
  /device/linaro/bootloader/edk2/ArmPkg/Library/PlatformBootManagerLib/
PlatformBm.c 24 #include <Protocol/DevicePath.h>
300 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
302 DevicePath = DevicePathFromHandle (Handle);
303 if (DevicePath == NULL) {
309 Status = EfiBootManagerUpdateConsoleVariable (ConOut, DevicePath, NULL);
316 Status = EfiBootManagerUpdateConsoleVariable (ErrOut, DevicePath, NULL);
342 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
352 DevicePath = DevicePathFromHandle (LoadedImage->DeviceHandle);
353 ASSERT (DevicePath != NULL);
354 DevicePath = AppendDevicePathNode (
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/RamDiskDxe/
RamDiskProtocol.c 573 @param[out] DevicePath On return, points to a pointer to the device path
576 DevicePath is created by appending a RAM disk node
578 NULL, the returned DevicePath is a RAM disk device
580 responsible for allocating the buffer DevicePath
584 @retval EFI_INVALID_PARAMETER DevicePath or RamDiskType is NULL.
599 OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath
609 if ((0 == RamDiskSize) || (NULL == RamDiskType) || (NULL == DevicePath)) {
652 *DevicePath = AppendDevicePathNode (
656 if (NULL == *DevicePath) {
661 PrivateData->DevicePath = *DevicePath;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/LoadFileOnFv2/
LoadFileOnFv2.c 19 #include <Protocol/DevicePath.h>
36 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
208 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
213 DevicePath = AppendDevicePathNode (
228 DevicePath = AppendDevicePath (DevicePath, FileDevicePath);
232 return DevicePath;
299 Private->DevicePath = CreateFileDevicePath (Handle, &NameGuid, UiName);
305 &gEfiDevicePathProtocolGuid, Private->DevicePath,
313 FreePool (Private->DevicePath);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Isa/Ps2MouseDxe/
Ps2Mouse.c 55 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
64 (VOID **) &DevicePath,
74 Acpi = (ACPI_HID_DEVICE_PATH *) DevicePath;
75 DevicePath = NextDevicePathNode (DevicePath);
76 } while (!IsDevicePathEnd (DevicePath));
164 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
174 (VOID **) &DevicePath,
188 DevicePath
227 MouseDev->DevicePath = DevicePath;
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConnect.c 91 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
107 DevicePath = DuplicateDevicePath (DevicePathToConnect);
108 if (DevicePath == NULL) {
111 CopyOfDevicePath = DevicePath;
118 // After this call DevicePath points to the next Instance
120 Instance = GetNextDevicePathInstance (&DevicePath, &Size);
194 } while (DevicePath != NULL);
200 // All handle with DevicePath exists in the handle database
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmConnect.c 111 drivers on the DevicePath.
239 @param DevicePath A short-form device path that starts with the first
243 @return EFI_INVALID_PARAMETER DevicePath is NULL pointer.
244 DevicePath is not a USB device path.
252 IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
266 if (DevicePath == NULL) {
270 if ((DevicePathType (DevicePath) != MESSAGING_DEVICE_PATH) ||
271 ((DevicePathSubType (DevicePath) != MSG_USB_CLASS_DP) && (DevicePathSubType (DevicePath) != MSG_USB_WWID_DP))
305 DevicePath,
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConnect.c 91 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
107 DevicePath = DuplicateDevicePath (DevicePathToConnect);
108 if (DevicePath == NULL) {
111 CopyOfDevicePath = DevicePath;
118 // After this call DevicePath points to the next Instance
120 Instance = GetNextDevicePathInstance (&DevicePath, &Size);
194 } while (DevicePath != NULL);
200 // All handle with DevicePath exists in the handle database
BdsBoot.c 458 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
467 DevicePath = (EFI_DEVICE_PATH_PROTOCOL *) Ptr;
468 if ((BBS_DEVICE_PATH == DevicePath->Type) && (BBS_BBS_DP == DevicePath->SubType)) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/DevicePathToText/
DevicePathToText.h 63 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
ReportStatusCode.c 23 #include EFI_PROTOCOL_DEFINITION (DevicePath)
123 DevicePath - Device path that to be reported
180 IN EFI_DEVICE_PATH_PROTOCOL * DevicePath
194 DevicePath - Device path that to be reported
210 DevicePathSize = (UINT16) EfiDevicePathSize (DevicePath);
218 EfiCopyMem (ExtendedDevicePath, DevicePath, DevicePathSize);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/FdtPlatformDxe/
ShellSetFdt.c 154 EFI_DEVICE_PATH *DevicePath;
162 DevicePath = NULL;
167 DevicePath = Shell->GetDevicePathFromFilePath (FilePath);
168 if (DevicePath != NULL) {
179 DevicePath,
202 DevicePath = EfiDevicePathFromTextProtocol->ConvertTextToDevicePath (
205 if (DevicePath == NULL) {
259 if (DevicePath != NULL) {
260 FreePool (DevicePath);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
BBSsupport.c 91 if ((DevicePathType (BootOption->DevicePath) == BBS_DEVICE_PATH) &&
92 (DevicePathSubType (BootOption->DevicePath) == BBS_BBS_DP)) {
98 DeviceTypeArray[Index] = ((BBS_BBS_DEVICE_PATH *) BootOption->DevicePath)->DeviceType;
104 FreePool (BootOption->DevicePath);
204 if ((DevicePathType (BootOption->DevicePath) == BBS_DEVICE_PATH) &&
205 (DevicePathSubType (BootOption->DevicePath) == BBS_BBS_DP)) {
209 ASSERT ((((BBS_BBS_DEVICE_PATH *) BootOption->DevicePath)->DeviceType & 0xF) < ARRAY_SIZE (DeviceTypeIndex));
210 NextIndex = &DeviceTypeIndex[((BBS_BBS_DEVICE_PATH *) BootOption->DevicePath)->DeviceType & 0xF];
235 FreePool (BootOption->DevicePath);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Isa/IsaBusDxe/
IsaBusDxe.h 26 #include <Protocol/DevicePath.h>
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
PciHostBridgeLib.h 53 EFI_DEVICE_PATH_PROTOCOL *DevicePath; ///< Device path.
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiExtScsiPassThru.c 168 @param[in, out] DevicePath A pointer to a single device path node that describes the SCSI device
170 allocating the buffer DevicePath with the boot service
172 DevicePath when the caller is finished with DevicePath.
176 DevicePath.
177 @retval EFI_INVALID_PARAMETER DevicePath is NULL.
180 @retval EFI_OUT_OF_RESOURCES There are not enough resources to allocate DevicePath.
189 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath
199 if (DevicePath == NULL) {
249 *DevicePath = (EFI_DEVICE_PATH_PROTOCOL *) Node;
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DevicePathToText.h 53 @param DevicePath Points to the device path to be converted.
62 @retval NULL if DevicePath is NULL or there was insufficient memory.
68 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath,
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiExtScsiPassThru.c 188 @param[in, out] DevicePath A pointer to a single device path node that
191 the buffer DevicePath with the boot service
193 responsibility to free DevicePath when the caller
194 is finished with DevicePath.
198 and returned in DevicePath.
201 @retval EFI_INVALID_PARAMETER DevicePath is NULL.
203 DevicePath.
212 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath
222 if ((DevicePath == NULL)) {
278 *DevicePath = (EFI_DEVICE_PATH_PROTOCOL *) Node;
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/IohInit/Dxe/
IohBds.h 20 #include <Protocol/DevicePath.h>
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/
Ps2Keyboard.c 125 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
134 (VOID **) &DevicePath,
144 Acpi = (ACPI_HID_DEVICE_PATH *) DevicePath;
145 DevicePath = NextDevicePathNode (DevicePath);
146 } while (!IsDevicePathEnd (DevicePath));
208 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
215 (VOID **) &DevicePath,
229 DevicePath
265 ConsoleIn->DevicePath = DevicePath;
    [all...]

Completed in 1869 milliseconds

1 23 4 5 6 7 8 91011>>