Home | History | Annotate | Download | only in lib

Lines Matching defs:FilePath

248     FILEPATH_DEVICE_PATH    *FilePath;
252 FilePath = AllocateZeroPool (Size + SIZE_OF_FILEPATH_DEVICE_PATH + sizeof(EFI_DEVICE_PATH));
255 if (FilePath) {
261 FilePath->Header.Type = MEDIA_DEVICE_PATH;
262 FilePath->Header.SubType = MEDIA_FILEPATH_DP;
263 SetDevicePathNodeLength (&FilePath->Header, Size + SIZE_OF_FILEPATH_DEVICE_PATH);
264 CopyMem (FilePath->PathName, FileName, Size);
265 Eop = NextDevicePathNode(&FilePath->Header);
272 DevicePath = (EFI_DEVICE_PATH *) FilePath;
279 FreePool(FilePath);
440 IN EFI_DEVICE_PATH *FilePath,
447 Status = uefi_call_wrapper(BS->LocateDevicePath, 3, Protocol, &FilePath, &Device);
454 if (IsDevicePathEnd(FilePath)) {