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

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/DevicePathUtilities/
DevicePathUtilities.h 120 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance
129 DevicePathInstance - Points to the device path instance.
133 NULL - Memory could not be allocated or DevicePathInstance is NULL.
141 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePathInstance,
150 DevicePathInstance - On input, this holds the pointer to the current device path
155 in bytes or zero, if DevicePathInstance is zero.
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DevicePathUtilities.h 102 @param DevicePathInstance Points to the device path instance.
105 @retval NULL Memory could not be allocated or DevicePathInstance is NULL.
112 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance
119 @param DevicePathInstance On input, this holds the pointer to the current device path
124 in bytes or zero, if DevicePathInstance is NULL.
134 IN OUT EFI_DEVICE_PATH_PROTOCOL **DevicePathInstance,
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
UefiDevicePathLib.c 149 instance specified by DevicePathInstance to a copy of the device path specified
153 If DevicePath is NULL, then a copy if DevicePathInstance is returned.
154 If DevicePathInstance is NULL, then NULL is returned.
155 If DevicePath or DevicePathInstance is invalid, then NULL is returned.
162 @param DevicePathInstance A pointer to a device path instance.
171 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance OPTIONAL
174 return UefiDevicePathLibAppendDevicePathInstance (DevicePath, DevicePathInstance);
UefiDevicePathLibOptionalDevicePathProtocol.c 202 instance specified by DevicePathInstance to a copy of the device path specified
206 If DevicePath is NULL, then a copy if DevicePathInstance is returned.
207 If DevicePathInstance is NULL, then NULL is returned.
208 If DevicePath or DevicePathInstance is invalid, then NULL is returned.
215 @param DevicePathInstance A pointer to a device path instance.
224 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance OPTIONAL
228 return mDevicePathLibDevicePathUtilities->AppendDevicePathInstance (DevicePath, DevicePathInstance);
230 return UefiDevicePathLibAppendDevicePathInstance (DevicePath, DevicePathInstance);
DevicePathUtilities.c 571 instance specified by DevicePathInstance to a copy of the device path specified
575 If DevicePath is NULL, then a copy if DevicePathInstance is returned.
576 If DevicePathInstance is NULL, then NULL is returned.
577 If DevicePath or DevicePathInstance is invalid, then NULL is returned.
584 @param DevicePathInstance A pointer to a device path instance.
593 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance OPTIONAL
602 return DuplicateDevicePath (DevicePathInstance);
605 if (DevicePathInstance == NULL) {
609 if (!IsDevicePathValid (DevicePath, 0) || !IsDevicePathValid (DevicePathInstance, 0)) {
614 InstanceSize = GetDevicePathSize (DevicePathInstance);
    [all...]
UefiDevicePathLib.h 267 instance specified by DevicePathInstance to a copy of the device path specified
271 If DevicePath is NULL, then a copy if DevicePathInstance is returned.
272 If DevicePathInstance is NULL, then NULL is returned.
273 If DevicePath or DevicePathInstance is invalid, then NULL is returned.
280 @param DevicePathInstance A pointer to a device path instance.
289 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance OPTIONAL
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/PlatformIntelBdsLib/
IntelBdsPlatform.c 97 EFI_DEVICE_PATH_PROTOCOL* DevicePathInstance;
131 DevicePathInstance = EfiDevicePathFromTextProtocol->ConvertTextToDevicePath (DevicePathStr);
132 ASSERT(DevicePathInstance != NULL);
133 DevicePathInstances = AppendDevicePathInstance (DevicePathInstances, DevicePathInstance);
138 FreePool (DevicePathInstance);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDevicePathLib/
UefiDevicePathLib.c 237 by DevicePathInstance to a copy of the device path secified by DevicePath in a allocated buffer.
240 If DevicePath is NULL, then a copy if DevicePathInstance is returned.
241 If DevicePathInstance is NULL, then NULL is returned.
247 @param DevicePathInstance A pointer to a device path instance.
256 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance OPTIONAL
265 return DuplicateDevicePath (DevicePathInstance);
268 if (DevicePathInstance == NULL) {
273 InstanceSize = GetDevicePathSize (DevicePathInstance);
286 CopyMem (TempDevicePath, DevicePathInstance, InstanceSize);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGlueDevicePathLib.h 130 by DevicePathInstance to a copy of the device path secified by DevicePath in a allocated buffer.
133 If DevicePath is NULL, then a copy if DevicePathInstance is returned.
134 If DevicePathInstance is NULL, then NULL is returned.
140 @param DevicePathInstance A pointer to a device path instance.
149 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance OPTIONAL
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
DevicePathLib.h 341 by DevicePathInstance to a copy of the device path secified by DevicePath in a allocated buffer.
344 If DevicePath is NULL, then a copy if DevicePathInstance is returned.
345 If DevicePathInstance is NULL, then NULL is returned.
346 If DevicePath or DevicePathInstance is invalid, then NULL is returned.
352 @param DevicePathInstance A pointer to a device path instance.
361 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance OPTIONAL
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/
UefiDevicePathLib.c 506 instance specified by DevicePathInstance to a copy of the device path specified
510 If DevicePath is NULL, then a copy if DevicePathInstance is returned.
511 If DevicePathInstance is NULL, then NULL is returned.
512 If DevicePath or DevicePathInstance is invalid, then NULL is returned.
519 @param DevicePathInstance A pointer to a device path instance.
528 IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance OPTIONAL
531 return mDevicePathLibDevicePathUtilities->AppendDevicePathInstance (DevicePath, DevicePathInstance);
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/
MemoryProfileRecord.c 507 EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance;
523 DevicePathInstance = mMemoryProfileDriverPath;
528 TmpDevicePath = DevicePathInstance;
536 DevicePathSize = (UINTN)TmpDevicePath - (UINTN)DevicePathInstance;
538 (CompareMem (DriverFilePath, DevicePathInstance, DevicePathSize) == 0)) {
545 DevicePathInstance = (EFI_DEVICE_PATH_PROTOCOL *)((UINTN)DevicePathInstance + DevicePathSize + DevicePathNodeLength(TmpDevicePath));
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
dpath.c 42 DevicePathInstance (
72 DEBUG((D_ERROR, "DevicePathInstance: DevicePath %x Size %d", *DevicePath, ((UINT8 *) DevPath) - ((UINT8 *) Start) ));
109 while (DevicePathInstance(&DevicePath, &Size)) {
169 while ((Inst = DevicePathInstance (&Src1, &Size))) {
996 while ((DevicePathInst = DevicePathInstance (&DevicePath, &Size))) {
1017 DevicePathInst = DevicePathInstance (&Temp, &Size);
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
SmramProfileRecord.c 587 EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance;
603 DevicePathInstance = mSmramProfileDriverPath;
608 TmpDevicePath = DevicePathInstance;
616 DevicePathSize = (UINTN)TmpDevicePath - (UINTN)DevicePathInstance;
618 (CompareMem (DriverFilePath, DevicePathInstance, DevicePathSize) == 0)) {
625 DevicePathInstance = (EFI_DEVICE_PATH_PROTOCOL *)((UINTN)DevicePathInstance + DevicePathSize + DevicePathNodeLength(TmpDevicePath));
    [all...]
  /external/syslinux/efi32/include/efi/
efilib.h 671 DevicePathInstance (
  /external/syslinux/efi64/include/efi/
efilib.h 671 DevicePathInstance (
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efilib.h 671 DevicePathInstance (

Completed in 289 milliseconds