Home
last modified time | relevance | path

Searched refs:filectx (Results 1 – 3 of 3) sorted by relevance

/titanic_50/usr/src/tools/onbld/Scm/
H A DBackup.py161 def addfilectx(self, filectx, path=None): argument
174 t = tarfile.TarInfo(path or filectx.path())
175 t.size = filectx.size()
176 t.mtime = filectx.date()[0]
195 if 'l' in filectx.flags():
198 t.linkname = filectx.data()
202 t.mode = 'x' in filectx.flags() and 0755 or 0644
203 data = StringIO(filectx.data())
339 rn = self.wctx.filectx(fname).renamed()
750 tar.addfilectx(child.filectx(fname),
H A DWorkSpace.py196 fctx = ctx.filectx(fname, filelog=octx.filelog())
198 fctx = ctx.filectx(fname)
361 data = self.localtip.filectx('.hgtags').data().splitlines()
387 parentfile = self.parenttip.filectx(path)
388 localfile = self.localtip.filectx(path)
554 fctx = active.localtip.filectx(fname)
/titanic_50/usr/src/tools/onbld/hgext/
H A Dcdm.py1406 fctx = wslist[repo].workingctx().filectx(abso)