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 426 This function creates a new device path by appending a copy of SecondDevicePath
428 device node from SecondDevicePath is retained. The newly created device path is
430 SecondDevicePath is returned. If SecondDevicePath is NULL, then it is ignored,
432 SecondDevicePath are NULL, then a copy of an end-of-device-path is returned.
439 @param SecondDevicePath A pointer to a device path data structure.
442 @retval NULL If FirstDevicePath or SecondDevicePath is invalid.
444 Or a copy an end-of-device-path if both FirstDevicePath and SecondDevicePath are NULL.
451 IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath OPTIONAL
464 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);
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
DevicePathLib.h 277 This function creates a new device path by appending a copy of SecondDevicePath to a copy of
279 SecondDevicePath is retained. The newly created device path is returned.
280 If FirstDevicePath is NULL, then it is ignored, and a duplicate of SecondDevicePath is returned.
281 If SecondDevicePath is NULL, then it is ignored, and a duplicate of FirstDevicePath is returned.
282 If both FirstDevicePath and SecondDevicePath are NULL, then a copy of an end-of-device-path is
289 @param SecondDevicePath A pointer to a device path data structure.
292 @retval NULL If FirstDevicePath or SecondDevicePath is invalid.
294 Or a copy an end-of-device-path if both FirstDevicePath and SecondDevicePath are NULL.
301 IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath OPTIONAL
325 if both FirstDevicePath and SecondDevicePath are NULL.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/EntryPoints/
EdkIIGlueSmmDriverEntryPoint.c 192 This function appends the device path SecondDevicePath
197 @param SecondDevicePath A pointer to a device path data structure.
201 It is up to the caller to free the memory used by FirstDevicePath and SecondDevicePath
209 IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath
219 ASSERT (FirstDevicePath != NULL && SecondDevicePath != NULL);
226 Size2 = SmmGetDevicePathSize (SecondDevicePath);
237 (mBS->CopyMem) ((VOID *) DevicePath2, (VOID *) SecondDevicePath, Size2);
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/
UefiDevicePathLib.c 432 This function creates a new device path by appending a copy of SecondDevicePath to a copy of
434 SecondDevicePath is retained. The newly created device path is returned.
435 If FirstDevicePath is NULL, then it is ignored, and a duplicate of SecondDevicePath is returned.
436 If SecondDevicePath is NULL, then it is ignored, and a duplicate of FirstDevicePath is returned.
437 If both FirstDevicePath and SecondDevicePath are NULL, then a copy of an end-of-device-path is
444 @param SecondDevicePath A pointer to a device path data structure.
447 @retval NULL If FirstDevicePath or SecondDevicePath is invalid.
450 SecondDevicePath are NULL.
457 IN CONST EFI_DEVICE_PATH_PROTOCOL *SecondDevicePath OPTIONAL
460 return mDevicePathLibDevicePathUtilities->AppendDevicePath (FirstDevicePath, SecondDevicePath);
    [all...]

Completed in 7556 milliseconds