Searched refs:InfFileName (Results 1 - 19 of 19) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DAprioriSection.py74 InfFileName = NormPath(FfsObj.InfFileName)
79 InfFileName = GenFdsGlobalVariable.MacroExtend(InfFileName, Dict, Arch)
82 Inf = GenFdsGlobalVariable.WorkSpace.BuildObject[PathClass(InfFileName, GenFdsGlobalVariable.WorkSpaceDir), Arch, GenFdsGlobalVariable.TargetName, GenFdsGlobalVariable.ToolChainTag]
86 Inf = GenFdsGlobalVariable.WorkSpace.BuildObject[PathClass(InfFileName, GenFdsGlobalVariable.WorkSpaceDir), 'COMMON', GenFdsGlobalVariable.TargetName, GenFdsGlobalVariable.ToolChainTag]
93 % (InfFileName, GenFdsGlobalVariable.ArchList))
H A DSection.py136 GenFdsGlobalVariable.InfLogger ("\nBuild Target \'%s\' of File %s is not in the Scope of %s specified by INF %s in FDF" %(File.Target, File.File, FfsInf.TargetOverrideList, FfsInf.InfFileName))
138 GenFdsGlobalVariable.VerboseLogger ("\nFile Type \'%s\' of File %s in %s is not same with file type \'%s\' from Rule in FDF" %(File.Type, File.File, FfsInf.InfFileName, FileType))
140 GenFdsGlobalVariable.InfLogger ("\nCurrent ARCH \'%s\' of File %s is not in the Support Arch Scope of %s specified by INF %s in FDF" %(FfsInf.CurrentArch, File.File, File.Arch, FfsInf.InfFileName))
H A DFfsInfStatement.py62 self.InfFileName = None
141 GenFdsGlobalVariable.VerboseLogger( " Begine parsing INf file : %s" %self.InfFileName)
143 self.InfFileName = self.InfFileName.replace('$(WORKSPACE)', '')
144 if self.InfFileName[0] == '\\' or self.InfFileName[0] == '/' :
145 self.InfFileName = self.InfFileName[1:]
147 if self.InfFileName.find('$') == -1:
148 InfPath = NormPath(self.InfFileName)
[all...]
H A DFv.py46 self.InfFileName = None
117 SaveFileOnChange(self.InfFileName, self.FvInfFile.getvalue(), False)
135 [self.InfFileName],
165 [self.InfFileName],
214 self.InfFileName = os.path.join(GenFdsGlobalVariable.FvDir,
344 if os.path.exists (self.InfFileName):
345 os.remove (self.InfFileName)
H A DOptRomInfStatement.py56 GenFdsGlobalVariable.ErrorLogger( "Expected TRUE/FALSE for PCI_COMPRESS: %s" %self.InfFileName)
95 GenFdsGlobalVariable.VerboseLogger( "Packing binaries from inf file : %s" %self.InfFileName)
H A DEfiSection.py61 InfFileName = FfsInf.InfFileName
154 EdkLogger.error("GenFds", GENFDS_ERROR, "File: %s miss Version Section value" %InfFileName)
200 EdkLogger.error("GenFds", GENFDS_ERROR, "File: %s miss UI Section value" %InfFileName)
216 EdkLogger.error("GenFds", GENFDS_ERROR, "Output file for %s section could not be found for %s" % (SectionType, InfFileName))
H A DOptionRom.py66 EdkLogger.error("GenFds", GENFDS_ERROR, "Module %s not produce .efi files, so NO file could be put into option ROM." % (FfsFile.InfFileName))
H A DFfsFileStatement.py45 self.InfFileName = None
H A DFdfParser.py2316 ffsInf.InfFileName = self.__Token
2321 if ffsInf.InfFileName.replace('$(WORKSPACE)', '').find('$') == -1:
2323 ErrorCode, ErrorInfo = PathClass(NormPath(ffsInf.InfFileName), GenFdsGlobalVariable.WorkSpaceDir).Validate()
2327 if not ffsInf.InfFileName in self.Profile.InfList:
2328 self.Profile.InfList.append(ffsInf.InfFileName)
4000 ffsInf.InfFileName = self.__Token
4001 if ffsInf.InfFileName.replace('$(WORKSPACE)', '').find('$') == -1:
4003 ErrorCode, ErrorInfo = PathClass(NormPath(ffsInf.InfFileName), GenFdsGlobalVariable.WorkSpaceDir).Validate()
4007 if not ffsInf.InfFileName in self.Profile.InfList:
4008 self.Profile.InfList.append(ffsInf.InfFileName)
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFv/
H A DGenFv.c192 CHAR8 *InfFileName; local
205 InfFileName = NULL;
260 InfFileName = argv[1];
261 if (InfFileName == NULL) {
552 // check input parameter, InfFileName can be NULL
554 if (InfFileName == NULL && DumpCapsule) {
558 VerboseMsg ("the input FvInf or CapInf file name is %s", InfFileName);
571 if (InfFileName != NULL) {
572 Status = GetFileImage (InfFileName, &InfFileImage, &InfFileSize);
579 VerboseMsg ("Dump the capsule header information for the input capsule image %s", InfFileName);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/CommonDataClass/
H A DFdfClass.py130 self.InfFileName = None
/vbox/src/VBox/HostDrivers/win/cfg/
H A DVBoxDrvCfg.cpp487 NonStandardAssert(pDrvDetail->InfFileName[0]);
488 if (pDrvDetail->InfFileName)
490 list.add(pDrvDetail->InfFileName);
491 NonStandardLogRelCrap((__FUNCTION__": %S added to list", pDrvDetail->InfFileName));
/vbox/src/VBox/Additions/WINNT/Installer/
H A DVBoxGuestDrvInst.cpp156 hInf = SetupOpenInfFile(DriverInfoDetailData.InfFileName,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DEdkIIWorkspaceBuild.py314 # [ InfFileName, ... ]
316 # [ InfFileName, ... ]
388 # { [InfFileName] : ModuleBuildClassObject, ...}
420 # { [InfFileName] : InfClassObject}
1199 # @param InfFileName: InfFileName specificed in platform
1204 def UpdateLibraryClassOfModule(self, InfFileName, LibraryClass, Arch, InstanceFilePath):
1227 Module = self.InfDatabase[InfFileName].Module
1250 # @param InfFileName: The InfFileName nee
[all...]
H A DFdfParserLite.py2022 ffsInf.InfFileName = self.__Token
2024 # if ffsInf.InfFileName.find('$') >= 0:
2025 # ffsInf.InfFileName = GenFdsGlobalVariable.GenFdsGlobalVariable.MacroExtend(ffsInf.InfFileName, MacroDict)
2027 if not ffsInf.InfFileName in self.Profile.InfList:
2028 self.Profile.InfList.append(ffsInf.InfFileName)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Object/Parser/
H A DInfPcdObject.py471 InfFileName = CurrentLineOfPcdItem[2]
472 PackageInfoList = GetPackageListInfo(InfFileName, GlobalData.gWORKSPACE, -1)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DAutoGen.py351 if FfsFile.InfFileName and FfsFile.NameGuid == None:
360 if path.normpath(Module.MetaFile.File) == path.normpath(FfsFile.InfFileName):
378 if FfsFile.InfFileName.find('$') == -1:
379 InfPath = NormPath(FfsFile.InfFileName)
381 EdkLogger.error('build', GENFDS_ERROR, "Non-existant Module %s !" % (FfsFile.InfFileName))
383 PathClassObj = PathClass(FfsFile.InfFileName, self.WorkspaceDir)
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dsetupapi.h546 CHAR InfFileName[MAX_PATH]; member in struct:_SP_DRVINFO_DETAIL_DATA_A
559 WCHAR InfFileName[MAX_PATH]; member in struct:_SP_DRVINFO_DETAIL_DATA_W
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dsetupapi.h545 CHAR InfFileName[MAX_PATH]; member in struct:_SP_DRVINFO_DETAIL_DATA_A
558 WCHAR InfFileName[MAX_PATH]; member in struct:_SP_DRVINFO_DETAIL_DATA_W

Completed in 123 milliseconds