HomeSort by relevance Sort by last modified time
    Searched defs:NewDevicePath (Results 1 - 24 of 24) sorted by null

  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/
DriverEntryPoint.c 90 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
103 Status = gBS->AllocatePool (EfiBootServicesData, Size, (VOID **) &NewDevicePath);
110 gBS->CopyMem ((VOID *) NewDevicePath, (VOID *) FirstDevicePath, Size1);
114 DevicePath2 = (EFI_DEVICE_PATH_PROTOCOL *) ((CHAR8 *) NewDevicePath + (Size1 - sizeof (EFI_DEVICE_PATH_PROTOCOL)));
118 return NewDevicePath;
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootConfig.c 42 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
49 NewDevicePath = NULL;
119 NewDevicePath = AppendDevicePathNode (TmpDevicePath, (EFI_DEVICE_PATH_PROTOCOL*) Node);
122 if (NewDevicePath == NULL) {
136 NewDevicePath,
149 if (NewDevicePath != NULL) {
150 FreePool (NewDevicePath);
HttpBootClient.c 35 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
95 NewDevicePath = AppendDevicePathNode (TmpDevicePath, (EFI_DEVICE_PATH_PROTOCOL*) Node);
98 if (NewDevicePath == NULL) {
110 NewDevicePath
117 Private->Ip4Nic->DevicePath = NewDevicePath;
126 NewDevicePath
132 Private->Ip6Nic->DevicePath = NewDevicePath;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
DevicePath.c 233 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
251 NewDevicePath = EfiLibAllocateCopyPool (Size, DevicePath);
253 return NewDevicePath;
282 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
306 NewDevicePath = EfiLibAllocateCopyPool (Size, Src1);
308 if (NewDevicePath != NULL) {
313 SecondDevicePath = (EFI_DEVICE_PATH_PROTOCOL *) ((CHAR8 *) NewDevicePath + (Size1 - sizeof (EFI_DEVICE_PATH_PROTOCOL)));
317 return NewDevicePath;
345 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
367 NewDevicePath = EfiAppendDevicePath (Src1, Temp);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDevicePathLib/
UefiDevicePathLib.c 89 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
103 NewDevicePath = AllocateCopyPool (Size, DevicePath);
105 return NewDevicePath;
137 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
159 NewDevicePath = AllocatePool (Size);
161 if (NewDevicePath != NULL) {
162 NewDevicePath = CopyMem (NewDevicePath, FirstDevicePath, Size1);
166 DevicePath2 = (EFI_DEVICE_PATH_PROTOCOL *) ((CHAR8 *) NewDevicePath +
171 return NewDevicePath;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/
RtDevicePath.c 330 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
348 NewDevicePath = InternalAllocateCopyPool (Size, DevicePath);
350 return NewDevicePath;
379 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
403 NewDevicePath = InternalAllocateCopyPool (Size, Src1);
405 if (NewDevicePath != NULL) {
410 SecondDevicePath = (EFI_DEVICE_PATH_PROTOCOL *) ((CHAR8 *) NewDevicePath + (Size1 - sizeof (EFI_DEVICE_PATH_PROTOCOL)));
414 return NewDevicePath;
442 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
464 NewDevicePath = RtEfiAppendDevicePath (Src1, Temp);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/SdDxe/
SdDxe.c 288 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
295 NewDevicePath = NULL;
316 NewDevicePath = AppendDevicePathNode (
321 if (NewDevicePath == NULL) {
327 RemainingDevicePath = NewDevicePath;
346 Device->DevicePath = NewDevicePath;
402 if (EFI_ERROR (Status) && (NewDevicePath != NULL)) {
403 FreePool (NewDevicePath);
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
DevicePathUtilities.c 457 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
483 NewDevicePath = AllocatePool (Size);
485 if (NewDevicePath != NULL) {
486 NewDevicePath = CopyMem (NewDevicePath, FirstDevicePath, Size1);
490 DevicePath2 = (EFI_DEVICE_PATH_PROTOCOL *) ((CHAR8 *) NewDevicePath +
495 return NewDevicePath;
535 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
559 NewDevicePath = AppendDevicePath (DevicePath, TempDevicePath);
563 return NewDevicePath;
    [all...]
DevicePathFromText.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/EmmcDxe/
EmmcDxe.c 538 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
547 NewDevicePath = NULL;
569 NewDevicePath = AppendDevicePathNode (
573 if (NewDevicePath == NULL) {
579 RemainingEmmcDevPath = NewDevicePath;
585 Device->DevicePath = NewDevicePath;
593 FreePool (NewDevicePath);
604 FreePool (NewDevicePath);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmConsole.c 430 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
449 // Initialize NewDevicePath
451 NewDevicePath = VarConsole;
455 // In the end, NewDevicePath is the final device path.
458 NewDevicePath = BmDelPartMatchInstance (VarConsole, ExclusiveDevicePath);
461 // Try to append customized device path to NewDevicePath.
464 if (!BmMatchDevicePaths (NewDevicePath, CustomizedConDevicePath)) {
466 // Check if there is part of CustomizedConDevicePath in NewDevicePath, delete it.
468 NewDevicePath = BmDelPartMatchInstance (NewDevicePath, CustomizedConDevicePath);
    [all...]
BmMisc.c 38 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
43 NewDevicePath = NULL;
60 TempNewDevicePath = NewDevicePath;
61 NewDevicePath = AppendDevicePathInstance (NewDevicePath, Instance);
71 return NewDevicePath;
BmBoot.c 159 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
192 NewDevicePath = AppendDevicePathNode (DevicePathFromHandle (LoadedImage->DeviceHandle), FvFileNode);
193 FileBuffer = BmGetFileBufferByFvFilePath (NewDevicePath, FullPath, FileSize);
194 FreePool (NewDevicePath);
217 NewDevicePath = AppendDevicePathNode (DevicePathFromHandle (FvHandles[Index]), FvFileNode);
218 FileBuffer = BmGetFileBufferByFvFilePath (NewDevicePath, FullPath, FileSize);
219 FreePool (NewDevicePath);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/EntryPoints/
EdkIIGlueSmmDriverEntryPoint.c 216 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
229 Status = (mBS->AllocatePool) (EfiBootServicesData, Size, (VOID **) &NewDevicePath);
232 (mBS->CopyMem) ((VOID *) NewDevicePath, (VOID *) FirstDevicePath, Size1);
236 DevicePath2 = (EFI_DEVICE_PATH_PROTOCOL *) ((CHAR8 *) NewDevicePath + (Size1 - sizeof (EFI_DEVICE_PATH_PROTOCOL)));
240 return NewDevicePath;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConsole.c 213 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
237 // Initialize NewDevicePath
239 NewDevicePath = VarConsole;
243 // In the end, NewDevicePath is the final device path.
246 NewDevicePath = BdsLibDelPartMatchInstance (VarConsole, ExclusiveDevicePath);
249 // Try to append customized device path to NewDevicePath.
252 if (!BdsLibMatchDevicePaths (NewDevicePath, CustomizedConDevicePath)) {
254 // Check if there is part of CustomizedConDevicePath in NewDevicePath, delete it.
256 NewDevicePath = BdsLibDelPartMatchInstance (NewDevicePath, CustomizedConDevicePath);
    [all...]
BdsMisc.c 877 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
883 NewDevicePath = NULL;
902 TempNewDevicePath = NewDevicePath;
903 NewDevicePath = AppendDevicePathInstance (NewDevicePath, Instance);
913 return NewDevicePath;
    [all...]
BdsBoot.c     [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
ConsoleOption.c 426 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
579 NewDevicePath = AppendDevicePathNode (
587 // NewMenuEntry->HelpString = DevicePathToStr (NewDevicePath);
592 if (BdsLibMatchDevicePaths (OutDevicePath, NewDevicePath)) {
597 if (BdsLibMatchDevicePaths (InpDevicePath, NewDevicePath)) {
602 if (BdsLibMatchDevicePaths (ErrDevicePath, NewDevicePath)) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerUiLib/
ConsoleOption.c 423 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
573 NewDevicePath = AppendDevicePathNode (
581 // NewMenuEntry->HelpString = UiDevicePathToStr (NewDevicePath);
590 if (MatchDevicePaths (OutDevicePath, NewDevicePath)) {
595 if (MatchDevicePaths (InpDevicePath, NewDevicePath)) {
600 if (MatchDevicePaths (ErrDevicePath, NewDevicePath)) {
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConsole.c 213 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
237 // Initialize NewDevicePath
239 NewDevicePath = VarConsole;
243 // In the end, NewDevicePath is the final device path.
246 NewDevicePath = BdsLibDelPartMatchInstance (VarConsole, ExclusiveDevicePath);
249 // Try to append customized device path to NewDevicePath.
252 if (!BdsLibMatchDevicePaths (NewDevicePath, CustomizedConDevicePath)) {
254 // Check if there is part of CustomizedConDevicePath in NewDevicePath, delete it.
256 NewDevicePath = BdsLibDelPartMatchInstance (NewDevicePath, CustomizedConDevicePath);
    [all...]
BdsMisc.c 877 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
883 NewDevicePath = NULL;
902 TempNewDevicePath = NewDevicePath;
903 NewDevicePath = AppendDevicePathInstance (NewDevicePath, Instance);
913 return NewDevicePath;
    [all...]
BdsBoot.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/PlatformDriOverrideDxe/
PlatDriOverrideLib.c 192 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
363 NewDevicePath = DevicePathFromHandle (FoundFvHandle);
365 NewDevicePath = AppendDevicePathNode (NewDevicePath, (EFI_DEVICE_PATH_PROTOCOL *) &FvFileNode);
366 *DevicePath = NewDevicePath;
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/BdsLib/
BdsFilePath.c 104 OUT EFI_DEVICE_PATH** NewDevicePath
142 *NewDevicePath = AppendDevicePath (UsbIoDevicePath, NextDevicePathNode (RemovableDevicePath));
156 *NewDevicePath = AppendDevicePath (UsbIoDevicePath, NextDevicePathNode (RemovableDevicePath));
182 OUT EFI_DEVICE_PATH** NewDevicePath
217 *NewDevicePath = AppendDevicePath (PartitionDevicePath, NextDevicePathNode (RemovableDevicePath));
299 OUT EFI_DEVICE_PATH** NewDevicePath
331 Status = RemovableDevice->GetDevice (RemovableDevicePath, DeviceHandle, NewDevicePath);
337 Status = RemovableDevice->GetDevice (RemovableDevicePath, DeviceHandle, NewDevicePath);
352 EFI_DEVICE_PATH* NewDevicePath;
416 Status = TryRemovableDevice (*DevicePath, Handle, &NewDevicePath);
    [all...]

Completed in 604 milliseconds