Lines Matching defs:File

35   @param[in]    File    This is a pointer to the device path of the file
43 IN CONST EFI_DEVICE_PATH_PROTOCOL *File
52 // First check to see if File is from a Firmware Volume
55 TempDevicePath = (EFI_DEVICE_PATH_PROTOCOL *)File;
76 // Next check to see if File is from a Block I/O device
79 TempDevicePath = (EFI_DEVICE_PATH_PROTOCOL *)File;
113 // File is not in a Firmware Volume or on a Block I/O device, so check to see if
114 // the device path supports the Simple File System Protocol.
117 TempDevicePath = (EFI_DEVICE_PATH_PROTOCOL *)File;
125 // Simple File System is present without Block I/O, so assume media is fixed.
131 // File is not from an FV, Block I/O or Simple File System, so the only options
132 // left are a PCI Option ROM and a Load File Protocol such as a PXE Boot from a NIC.
134 TempDevicePath = (EFI_DEVICE_PATH_PROTOCOL *)File;
712 @param[in] File This is a pointer to the device path of the file that
715 @param[in] FileBuffer File buffer matches the input file device path.
716 @param[in] FileSize Size of File buffer matches the input file device path.
718 @retval EFI_SUCCESS The file specified by File did authenticate, and the
719 platform policy dictates that the DXE Core may use File.
720 @retval EFI_INVALID_PARAMETER File is NULL.
721 @retval EFI_SECURITY_VIOLATION The file specified by File did not authenticate, and
722 the platform policy dictates that File should be placed
726 @retval EFI_ACCESS_DENIED The file specified by File did not authenticate, and
727 the platform policy dictates that File should not be
735 IN CONST EFI_DEVICE_PATH_PROTOCOL *File,
746 if (File == NULL) {
760 if (!VerifyDevicePath (File)) {
772 FileType = GetFileType (File);
782 PutDefferedImageInfo (File, NULL, 0);