Lines Matching defs:CpioFile
106 """Class that serves as an adapter between CpioFile and
320 Is returned by CpioFile.extractfile().
416 CpioInfo objects are returned by CpioFile.getmember(),
417 CpioFile.getmembers() and CpioFile.getcpioinfo() and are
516 # modifications to frombuf(), as well as CpioFile.next() to pass the
517 # CpioFile object in. I'm not sure that isn't poor OO style.
527 class CpioFile(object):
528 """The CpioFile Class provides an interface to cpio archives.
540 `fileobj' is not closed, when CpioFile is closed.
596 # CpioFile class. The open() method is the only one that is needed for
601 # This concept allows one to subclass CpioFile without losing the comfort of
607 an appropriate CpioFile class.
915 new CpioFile object given the original one as an argument (after
928 Return the CpioFile object based on the repositioning done by
933 return CpioFile(cfobj=self)
974 cf = CpioFile.open(sys.argv[1])