Home
last modified time | relevance | path

Searched refs:chunkyreader (Results 1 – 8 of 8) sorted by relevance

/dports/archivers/py-bup/bup-0.31/lib/cmd/
H A Dcat-file-cmd.py24 from bup.helpers import chunkyreader, handle_ctrl_c, log, saved_errors
80 for b in chunkyreader(f):
H A Dweb-cmd.py25 from bup.helpers import (chunkyreader, debug1, format_filesize, handle_ctrl_c,
201 it = chunkyreader(f)
202 for blob in chunkyreader(f):
H A Drestore-cmd.py26 from bup.helpers import (add_error, chunkyreader, die_if_errors, handle_ctrl_c,
154 for b in chunkyreader(inf):
162 for b in chunkyreader(inf):
H A Dfsck-cmd.py28 from bup.helpers import Sha1, chunkyreader, istty2, log, progress
121 for b in chunkyreader(f, os.fstat(f.fileno()).st_size - 20):
H A Dftp-cmd.py29 from bup.helpers import chunkyreader, handle_ctrl_c, log
51 for blob in chunkyreader(inf):
/dports/archivers/py-bup/bup-0.31/lib/bup/
H A Dclient.py11 from bup.helpers import (Conn, atomically_replaced_file, chunkyreader, debug1,
254 for b in chunkyreader(self.conn, n):
372 cr = chunkyreader(conn, size)
H A Dgit.py22 from bup.helpers import (Sha1, add_error, chunkyreader, debug1, debug2,
889 for b in chunkyreader(f):
966 for b in chunkyreader(idx_f, 20 * self.count):
971 for b in chunkyreader(idx_f):
1318 it = _AbortableIter(chunkyreader(self.p.stdout, size),
H A Dhelpers.py674 def chunkyreader(f, count = None): function