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

  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/
DriverEntryPoint.c 66 This function appends the device path SecondDevicePath
71 @param SecondDevicePath A pointer to a device path data structure.
75 It is up to the caller to free the memory used by FirstDevicePath and SecondDevicePath
83 IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath
93 ASSERT (FirstDevicePath != NULL && SecondDevicePath != NULL);
100 Size2 = SmmGetDevicePathSize (SecondDevicePath);
115 gBS->CopyMem ((VOID *) DevicePath2, (VOID *) SecondDevicePath, Size2);
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
UefiDevicePathLib.c 75 This function creates a new device path by appending a copy of SecondDevicePath
77 device node from SecondDevicePath is retained. The newly created device path is
79 SecondDevicePath is returned. If SecondDevicePath is NULL, then it is ignored,
81 SecondDevicePath are NULL, then a copy of an end-of-device-path is returned.
88 @param SecondDevicePath A pointer to a device path data structure.
91 @retval NULL If FirstDevicePath or SecondDevicePath is invalid.
93 Or a copy an end-of-device-path if both FirstDevicePath and SecondDevicePath are NULL.
100 IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath OPTIONAL
103 return UefiDevicePathLibAppendDevicePath (FirstDevicePath, SecondDevicePath);
    [all...]
DevicePathUtilities.c 409 This function creates a new device path by appending a copy of SecondDevicePath
411 device node from SecondDevicePath is retained. The newly created device path is
413 SecondDevicePath is returned. If SecondDevicePath is NULL, then it is ignored,
415 SecondDevicePath are NULL, then a copy of an end-of-device-path is returned.
422 @param SecondDevicePath A pointer to a device path data structure.
425 @retval NULL If FirstDevicePath or SecondDevicePath is invalid.
427 Or a copy an end-of-device-path if both FirstDevicePath and SecondDevicePath are NULL.
434 IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath OPTIONAL
447 return DuplicateDevicePath ((SecondDevicePath != NULL) ? SecondDevicePath : &mUefiDevicePathLibEndDevicePath);
    [all...]
UefiDevicePathLibOptionalDevicePathProtocol.c 120 This function creates a new device path by appending a copy of SecondDevicePath
122 device node from SecondDevicePath is retained. The newly created device path is
124 SecondDevicePath is returned. If SecondDevicePath is NULL, then it is ignored,
126 SecondDevicePath are NULL, then a copy of an end-of-device-path is returned.
133 @param SecondDevicePath A pointer to a device path data structure.
136 @retval NULL If FirstDevicePath or SecondDevicePath is invalid.
138 Or a copy an end-of-device-path if both FirstDevicePath and SecondDevicePath are NULL.
145 IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath OPTIONAL
149 return mDevicePathLibDevicePathUtilities->AppendDevicePath (FirstDevicePath, SecondDevicePath);
    [all...]
UefiDevicePathLib.h 199 This function creates a new device path by appending a copy of SecondDevicePath
201 device node from SecondDevicePath is retained. The newly created device path is
203 SecondDevicePath is returned. If SecondDevicePath is NULL, then it is ignored,
205 SecondDevicePath are NULL, then a copy of an end-of-device-path is returned.
212 @param SecondDevicePath A pointer to a device path data structure.
215 @retval NULL If FirstDevicePath or SecondDevicePath is invalid.
217 Or a copy an end-of-device-path if both FirstDevicePath and SecondDevicePath are NULL.
224 IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath OPTIONAL
250 if both FirstDevicePath and SecondDevicePath are NULL.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDevicePathLib/
UefiDevicePathLib.c 111 This function creates a new device path by appending a copy of SecondDevicePath to a copy of
113 SecondDevicePath is retained. The newly created device path is returned.
114 If FirstDevicePath is NULL, then it is ignored, and a duplicate of SecondDevicePath is returned.
115 If SecondDevicePath is NULL, then it is ignored, and a duplicate of FirstDevicePath is returned.
116 If both FirstDevicePath and SecondDevicePath are NULL, then NULL is returned.
122 @param SecondDevicePath A pointer to a device path data structure.
131 IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath OPTIONAL
144 return DuplicateDevicePath (SecondDevicePath);
147 if (SecondDevicePath == NULL) {
156 Size2 = GetDevicePathSize (SecondDevicePath);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGlueDevicePathLib.h 77 This function creates a new device path by appending a copy of SecondDevicePath to a copy of
79 SecondDevicePath is retained. The newly created device path is returned.
80 If FirstDevicePath is NULL, then it is ignored, and a duplicate of SecondDevicePath is returned.
81 If SecondDevicePath is NULL, then it is ignored, and a duplicate of FirstDevicePath is returned.
82 If both FirstDevicePath and SecondDevicePath are NULL, then NULL is returned.
88 @param SecondDevicePath A pointer to a device path data structure.
97 IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath OPTIONAL
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
DevicePath.c 283 EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath;
313 SecondDevicePath = (EFI_DEVICE_PATH_PROTOCOL *) ((CHAR8 *) NewDevicePath + (Size1 - sizeof (EFI_DEVICE_PATH_PROTOCOL)));
314 EfiCopyMem (SecondDevicePath, Src2, Size2);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/
RtDevicePath.c 380 EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath;
410 SecondDevicePath = (EFI_DEVICE_PATH_PROTOCOL *) ((CHAR8 *) NewDevicePath + (Size1 - sizeof (EFI_DEVICE_PATH_PROTOCOL)));
411 EfiCopyMem (SecondDevicePath, Src2, Size2);