/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
Identification.py | 20 # @var FileFullPath: To store data for full path of the file
27 self.FileFullPath = ''
35 def GetFileName(self, FileFullPath, FileRelativePath):
49 def GetFileRelativePath(self, FileName, FileFullPath):
|
DecClassObject.py | 139 self.Identification.FileFullPath = Filename
258 ContainerFile = self.Identification.FileFullPath
326 PackageHeader.FullPath = self.Identification.FileFullPath
|
InfClassObject.py | 219 ContainerFile = self.Identification.FileFullPath
329 self.Identification.FileFullPath = Filename
534 File = self.Identification.FileFullPath
551 ModuleHeader.FullPath = self.Identification.FileFullPath
621 EdkLogger.warn(2000, 'VERSION_NUMBER depricated; INF file %s should be modified to use VERSION_STRING instead.' % self.Identification.FileFullPath)
625 EdkLogger.warn(2001, 'INF file %s defines both VERSION_NUMBER and VERSION_STRING, using VERSION_STRING' % self.Identification.FileFullPath)
[all...] |
DscClassObject.py | 149 ContainerFile = self.Identification.FileFullPath
238 PlatformHeader.FullPath = self.Identification.FileFullPath
[all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/ |
TableFile.py | 81 # @param FileFullPath: The full path of the file
86 def InsertFile(self, FileFullPath, Model):
87 (Filepath, Name) = os.path.split(FileFullPath)
88 (Root, Ext) = os.path.splitext(FileFullPath)
89 TimeStamp = os.stat(FileFullPath)[8]
90 File = FileClass(-1, Name, Ext, Filepath, FileFullPath, Model, '', [], [], [])
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/ |
MkPkg.py | 140 FileFullPath = mws.join(WorkspaceDir, FromFile)
141 if FileFullPath in RePkgDict:
142 (DpGuid, DpVersion, DpName, Repackage) = RePkgDict[FileFullPath]
148 (FileFullPath, DpGuid, DpVersion, DpName)
168 FileFullPath = os.path.normpath(os.path.join(WorkspaceDir, File))
173 if FileFullPath in RePkgDict:
174 (DpGuid, DpVersion, DpName, Repackage) = RePkgDict[FileFullPath]
180 ST.MSG_REPKG_CONFLICT %(FileFullPath, DpName, \
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
Fv.py | 352 FileFullPath = os.path.normpath(self.FvExtEntryData[Index])
354 FileFullPath = os.path.normpath(os.path.join(GenFdsGlobalVariable.WorkSpaceDir, self.FvExtEntryData[Index]))
356 if not os.path.isfile(FileFullPath):
358 FvExtFile = open (FileFullPath,'rb')
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/ |
InfParserLite.py | 73 self.Identification.FileFullPath = Filename
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/ |
build.py | 206 FileFullPath = os.path.normpath(FilePath)
208 FileFullPath = os.path.normpath(mws.join(Workspace, FilePath))
212 if not os.path.isfile(FileFullPath):
213 EdkLogger.error("build", FILE_NOT_FOUND, ExtraData="\t%s (Please give file in absolute path or relative to WORKSPACE)" % FileFullPath)
217 return FileFullPath[len(Workspace):]
219 return FileFullPath[(len(Workspace) + 1):]
[all...] |