Searched refs:FilePath (Results 26 - 50 of 73) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Eot/
H A DReport.py460 FilePath = 'FVRECOVERYFLOPPY.fv' variable
461 if FilePath.lower().endswith(".fv"):
462 fd = open(FilePath, 'rb')
465 buf.fromfile(fd, os.path.getsize(FilePath))
H A DFvImage.py1424 FilePath = sys.argv[1] variable
1425 if FilePath.lower().endswith(".fv"):
1426 fd = open(FilePath, 'rb')
1429 buf.fromfile(fd, os.path.getsize(FilePath))
1437 elif FilePath.endswith(".efi"):
1438 fd = open(FilePath, 'rb')
1440 Size = os.path.getsize(FilePath)
1449 sf, ext = os.path.splitext(os.path.basename(FilePath))
1452 elif FilePath.endswith(".map"):
1453 mf = LinkMap(FilePath)
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/PiSmmCore/
H A DDispatcher.c318 EFI_DEVICE_PATH_PROTOCOL *FilePath; local
334 FilePath = DriverEntry->FvFileDevicePath;
336 OriginalFilePath = FilePath;
337 HandleFilePath = FilePath;
374 // Pull out just the file portion of the DevicePath for the LoadedImage FilePath
376 FilePath = OriginalFilePath;
380 FilePath = (EFI_DEVICE_PATH_PROTOCOL *) (((UINT8 *)FilePath) + FilePathSize );
557 // Make an EfiBootServicesData buffer copy of FilePath
559 Status = gBS->AllocatePool (EfiBootServicesData, GetDevicePathSize (FilePath), (VOI
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/
H A DRmPkg.py114 FilePath = os.path.join(Root, File)
115 if FilePath not in NewFileList:
116 NewFileList.append(FilePath)
H A DInstallPkg.py241 FilePath = PackageToDec(Package)
242 Md5Sigature = md5.new(open(str(FilePath), 'rb').read())
244 if (FilePath, Md5Sum) not in Package.FileList:
245 Package.FileList.append((FilePath, Md5Sum))
300 FilePath = ModuleToInf(Module)
301 Md5Sigature = md5.new(open(str(FilePath), 'rb').read())
304 if (FilePath, Md5Sum) not in Package.FileList:
305 Package.FileList.append((FilePath, Md5Sum))
307 if (FilePath, Md5Sum) not in Module.FileList:
308 Module.FileList.append((FilePath, Md5Su
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DGenMake.py799 FilePath = os.path.join(SearchPath, Inc)
800 if FilePath in gIsFileMap:
801 if not gIsFileMap[FilePath]:
804 elif not os.path.isfile(FilePath):
805 gIsFileMap[FilePath] = False
808 gIsFileMap[FilePath] = True
809 FilePath = PathClass(FilePath)
810 FullPathDependList.append(FilePath)
811 if FilePath no
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DLoadPciRom.c215 EFI_DEVICE_PATH_PROTOCOL *FilePath; local
330 FilePath = FileDevicePath (NULL, RomFileName);
335 FilePath,
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Include/Protocol/
H A DSmmBase.h100 @param[in] FilePath The location of the image to be installed as the handler.
121 IN EFI_DEVICE_PATH_PROTOCOL *FilePath,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Parser/
H A DInfSectionParser.py199 # @param FilePath The path of meta file
201 def __new__(cls, FilePath, *args, **kwargs):
206 if FilePath in cls.MetaFiles:
207 return cls.MetaFiles[FilePath]
210 cls.MetaFiles[FilePath] = ParserObject
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DBdsBoot.c538 and there is no Media FilePath device path in the end.
541 and ended with Media FilePath device path.
544 FilePath device path. In this case, it will follow Removable Media Boot Behavior.
547 FilePath device path.
653 EFI_DEVICE_PATH_PROTOCOL *FilePath; local
880 FilePath = FileDevicePath((EFI_HANDLE)Handle, pszFolder);
881 if (FilePath) {
882 VBoxLogFlowFuncMarkVar(DevicePathToStr(FilePath), "%s");
884 Status = gBS->LoadImage(TRUE, gImageHandle, FilePath, NULL, 0, &ImageHandle );
898 FilePath
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Object/POM/
H A DCommonObject.py649 self.FilePath = ''
655 def SetFilePath(self, FilePath):
656 self.FilePath = FilePath
659 return self.FilePath
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Workspace/
H A DWorkspaceDatabase.py88 # @param FilePath The path of platform description file
95 def __init__(self, FilePath, RawData, BuildDataBase, Arch='COMMON', Target=None, Toolchain=None):
96 self.MetaFile = FilePath
822 # @param FilePath The path of module description file
824 def AddModule(self, FilePath):
825 FilePath = NormPath(FilePath)
826 if FilePath not in self.Modules:
828 Module.MetaFile = FilePath
935 # @param FilePath Th
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeServicesLib/
H A DDxeServicesLib.c588 attempting to load FilePath as a boot
589 selection. If FALSE, then FilePath must
591 @param[in] FilePath The pointer to the device path of the file
605 IN CONST EFI_DEVICE_PATH_PROTOCOL *FilePath,
633 if (FilePath == NULL || FileSize == NULL || AuthenticationStatus == NULL) {
651 OrigDevicePathNode = DuplicateDevicePath (FilePath);
603 GetFileBufferByFilePath( IN BOOLEAN BootPolicy, IN CONST EFI_DEVICE_PATH_PROTOCOL *FilePath, OUT UINTN *FileSize, OUT UINT32 *AuthenticationStatus ) argument
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/
H A DDriverEntryPoint.c218 CompleteFilePath = SmmAppendDevicePath (ImageDevicePath, LoadedImage->FilePath);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
H A DPxeBcImpl.h150 @param FilePath The device specific path of the file to load.
152 boot manager is attempting to load FilePath as a boot
153 selection. If FALSE, then FilePath must match as exact file
165 @retval EFI_INVALID_PARAMETER FilePath is not a valid device path, or
178 IN EFI_DEVICE_PATH_PROTOCOL * FilePath,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Core/
H A DIpiDb.py98 FilePath TEXT NOT NULL,
102 PRIMARY KEY (FilePath)
190 for (FilePath, Md5Sum) in PkgObj.FileList:
192 DpObj.Header.GetVersion(), FilePath, \
819 SqlCommand = """select FilePath
822 FilePath like '%%.inf'
826 FilePath = ModuleInfo[0]
827 ModList.append(FilePath)
/vbox/src/VBox/Devices/PC/ipxe/src/image/
H A Defi_image.c159 if ( ( rc = efi_image_make_cmdline ( image, &loaded.image->FilePath,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DDscClassObject.py252 Fdf.FilePath = NormPath(QueryDefinesItem(self.TblDsc, TAB_DSC_DEFINES_FLASH_DEFINITION, Arch, self.FileID)[0])
400 Library.FilePath = NormPath(Key)
451 Library.FilePath = NormPath(Key[1])
815 Component.FilePath = NormPath(InfFilename)
817 CheckFileType(Component.FilePath, '.Inf', ContainerFile, 'component name', Item[0], LineNo)
818 CheckFileExist(self.WorkspaceDir, Component.FilePath, ContainerFile, 'component', Item[0], LineNo)
1395 print 'Fdf =', M.FlashDefinitionFile.FilePath
1402 print '\t', Item.FilePath, Item.SupArchList, Item.Define
1405 print '\t', Item.Name, Item.FilePath, Item.SupModuleList, Item.SupArchList, Item.Define
1413 print '\t', Item.FilePath, Ite
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/
H A DCheck.py673 for FilePath in FilePathList:
675 EccGlobalData.gDb.TblReport.Insert(ERROR_META_DATA_FILE_CHECK_LIBRARY_NAME_DUPLICATE, OtherMsg="The Library Class [%s] is duplicated in '%s' line %s and line %s." % (Record[1], FilePath, Record[3], Record[4]), BelongsToTable='Dsc', BelongsToItem=Record[0])
691 FilePath = Record[1]
692 FilePath = os.path.normpath(os.path.join(EccGlobalData.gWorkspace, FilePath))
694 """ % (MODEL_EFI_SOURCE_FILE, FilePath)
697 if not EccGlobalData.gException.IsException(ERROR_META_DATA_FILE_CHECK_BINARY_INF_IN_FDF, FilePath):
698 EccGlobalData.gDb.TblReport.Insert(ERROR_META_DATA_FILE_CHECK_BINARY_INF_IN_FDF, OtherMsg="File [%s] defined in FDF file and not in DSC file must be a binary module" % (FilePath), BelongsToTable='Fdf', BelongsToItem=FdfID)
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Library/
H A DShellLib.h85 @param[in, out] FilePath On input, the device path to the file. On output,
112 IN OUT EFI_DEVICE_PATH_PROTOCOL **FilePath,
126 @param[in] FilePath The pointer to file name.
151 IN CONST CHAR16 *FilePath,
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Protocol/
H A DDevicePath.h1020 FILEPATH_DEVICE_PATH FilePath; member in union:__anon15650
1058 FILEPATH_DEVICE_PATH *FilePath; member in union:__anon15651
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLib/
H A DUefiShellLib.c450 @param FilePath on input the device path to the file. On output
477 IN OUT EFI_DEVICE_PATH_PROTOCOL **FilePath,
490 if (FilePath == NULL || FileHandle == NULL || DeviceHandle == NULL) {
501 FileName = gEfiShellProtocol->GetFilePathFromDevicePath(*FilePath);
515 FilePath,
538 while (!IsDevicePathEnd (*FilePath)) {
542 if (DevicePathType (*FilePath) != MEDIA_DEVICE_PATH ||
543 DevicePathSubType (*FilePath) != MEDIA_FILEPATH_DP
560 ((FILEPATH_DEVICE_PATH*)*FilePath)->PathName,
572 ((FILEPATH_DEVICE_PATH*)*FilePath)
476 ShellOpenFileByDevicePath( IN OUT EFI_DEVICE_PATH_PROTOCOL **FilePath, OUT EFI_HANDLE *DeviceHandle, OUT SHELL_FILE_HANDLE *FileHandle, IN UINT64 OpenMode, IN UINT64 Attributes ) argument
640 EFI_DEVICE_PATH_PROTOCOL *FilePath; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/Library/PlatformBdsLib/
H A DBdsPlatform.c1691 EFI_DEVICE_PATH_PROTOCOL *FilePath; local
1810 FilePath = FileDevicePath (NULL, FileName);
1815 FilePath,
1826 if (FilePath != NULL) {
1827 gBS->FreePool (FilePath);
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Library/DxeTpmMeasureBootLib/
H A DDxeTpmMeasureBootLib.c255 @param[in] FilePath File path is corresponding to the input image.
271 IN EFI_DEVICE_PATH_PROTOCOL *FilePath
302 FilePathSize = (UINT32) GetDevicePathSize (FilePath);
342 CopyMem (ImageLoad->DevicePath, FilePath, FilePathSize);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
H A DMetaFileParser.py102 # @param FilePath The path of platform description file
123 # @param FilePath The path of meta file
127 def __new__(Class, FilePath, *args, **kwargs):
128 if FilePath in Class.MetaFiles:
129 return Class.MetaFiles[FilePath]
132 Class.MetaFiles[FilePath] = ParserObject
139 # @param FilePath The path of platform description file
146 def __init__(self, FilePath, FileType, Table, Owner=-1, From=-1):
150 self.MetaFile = FilePath
383 # @param FilePath Th
[all...]

Completed in 183 milliseconds

123