Lines Matching refs:tar
541 tar = CdmTarFile.gzopen(tarpath, 'w')
549 tar.add(path, name)
563 tar.close()
588 tar = CdmTarFile.gzopen(tarpath)
593 for elt in tar:
595 tar.extract(elt, path=self.ws.repo.path)
607 if tar and not tar.closed:
608 tar.close()
647 tar = CdmTarFile.gzopen(tarpath)
652 if not tar.members_match_fs(self.ws.repo.path):
653 tar.close()
656 tarnames = map(strip_trailing_pathsep, tar.getnames())
657 tar.close()
736 tar = CdmTarFile.gzopen(tarpath, 'w')
750 tar.addfilectx(child.filectx(fname),
759 tar.close()