HomeSort by relevance Sort by last modified time
    Searched refs:DistFile (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
ReplacePkg.py 48 ContentZipFile, DistFile = None, None
53 DistPkg, ContentZipFile, DpPkgFileName, DistFile = UnZipDp(WorkspaceDir, Options.PackFileToReplace)
98 if DistFile:
99 DistFile.Close()
UPT.py 298 # This function will check DistFile existence, if not absolute path, then try current working directory,
301 # @param DistFile: The distribution file in either relative path or absolute path
305 def GetFullPathDist(DistFile, WorkspaceDir):
306 if os.path.isabs(DistFile):
307 if not (os.path.exists(DistFile) and os.path.isfile(DistFile)):
310 return DistFile
312 AbsPath = os.path.normpath(os.path.join(os.getcwd(), DistFile))
314 AbsPath = os.path.normpath(os.path.join(WorkspaceDir, DistFile))
InstallPkg.py 139 DistFile = PackageFile(DpPkgFileName)
141 DpDescFileName, ContentFileName = GetDPFile(DistFile.GetZipFile())
144 DistPkgFile = DistFile.UnpackFile(DpDescFileName,
162 ContentFile = DistFile.UnpackFile(ContentFileName,
193 return DistPkg, ContentZipFile, DpPkgFileName, DistFile
512 ContentZipFile, DistFile = None, None
523 DistPkg, ContentZipFile, DpPkgFileName, DistFile = UnZipDp(WorkspaceDir, Options.PackageFile)
561 if DistFile:
562 DistFile.Close()
    [all...]

Completed in 2321 milliseconds