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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
zipfile.py 17 __all__ = ["BadZipfile", "error", "ZIP_STORED", "ZIP_DEFLATED", "is_zipfile",
20 class BadZipfile(Exception):
30 error = BadZipfile # The exception raised by this module
177 raise BadZipfile("zipfiles that span multiple disks are not supported")
647 raise BadZipfile("Bad CRC-32 for file %r" % self.name)
781 except BadZipfile:
809 raise BadZipfile("File is not a zip file")
811 raise BadZipfile, "File is not a zip file"
836 raise BadZipfile("Truncated central directory")
839 raise BadZipfile("Bad magic number for central directory")
    [all...]
  /external/chromium-trace/catapult/third_party/zipfile/
zipfile_2_7_13.py 17 __all__ = ["BadZipfile", "error", "ZIP_STORED", "ZIP_DEFLATED", "is_zipfile",
20 class BadZipfile(Exception):
30 error = BadZipfile # The exception raised by this module
177 raise BadZipfile("zipfiles that span multiple disks are not supported")
647 raise BadZipfile("Bad CRC-32 for file %r" % self.name)
782 except BadZipfile:
811 raise BadZipfile("File is not a zip file")
813 raise BadZipfile, "File is not a zip file"
839 raise BadZipfile("Truncated central directory")
842 raise BadZipfile("Bad magic number for central directory"
    [all...]
  /external/python/cpython2/Lib/
zipfile.py 17 __all__ = ["BadZipfile", "error", "ZIP_STORED", "ZIP_DEFLATED", "is_zipfile",
20 class BadZipfile(Exception):
30 error = BadZipfile # The exception raised by this module
177 raise BadZipfile("zipfiles that span multiple disks are not supported")
647 raise BadZipfile("Bad CRC-32 for file %r" % self.name)
782 except BadZipfile:
811 raise BadZipfile("File is not a zip file")
813 raise BadZipfile, "File is not a zip file"
839 raise BadZipfile("Truncated central directory")
842 raise BadZipfile("Bad magic number for central directory"
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
zipfile.py 17 __all__ = ["BadZipfile", "error", "ZIP_STORED", "ZIP_DEFLATED", "is_zipfile",
20 class BadZipfile(Exception):
30 error = BadZipfile # The exception raised by this module
177 raise BadZipfile("zipfiles that span multiple disks are not supported")
643 raise BadZipfile("Bad CRC-32 for file %r" % self.name)
777 except BadZipfile:
805 raise BadZipfile("File is not a zip file")
807 raise BadZipfile, "File is not a zip file"
832 raise BadZipfile("Truncated central directory")
835 raise BadZipfile("Bad magic number for central directory"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
zipfile.py 17 __all__ = ["BadZipfile", "error", "ZIP_STORED", "ZIP_DEFLATED", "is_zipfile",
20 class BadZipfile(Exception):
30 error = BadZipfile # The exception raised by this module
177 raise BadZipfile("zipfiles that span multiple disks are not supported")
643 raise BadZipfile("Bad CRC-32 for file %r" % self.name)
777 except BadZipfile:
805 raise BadZipfile("File is not a zip file")
807 raise BadZipfile, "File is not a zip file"
832 raise BadZipfile("Truncated central directory")
835 raise BadZipfile("Bad magic number for central directory"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 17 __all__ = ["BadZipfile", "error", "ZIP_STORED", "ZIP_DEFLATED", "is_zipfile",
20 class BadZipfile(Exception):
30 error = BadZipfile # The exception raised by this module
177 raise BadZipfile("zipfiles that span multiple disks are not supported")
643 raise BadZipfile("Bad CRC-32 for file %r" % self.name)
777 except BadZipfile:
805 raise BadZipfile("File is not a zip file")
807 raise BadZipfile, "File is not a zip file"
832 raise BadZipfile("Truncated central directory")
835 raise BadZipfile("Bad magic number for central directory"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py 17 __all__ = ["BadZipfile", "error", "ZIP_STORED", "ZIP_DEFLATED", "is_zipfile",
20 class BadZipfile(Exception):
30 error = BadZipfile # The exception raised by this module
177 raise BadZipfile("zipfiles that span multiple disks are not supported")
643 raise BadZipfile("Bad CRC-32 for file %r" % self.name)
777 except BadZipfile:
805 raise BadZipfile("File is not a zip file")
807 raise BadZipfile, "File is not a zip file"
832 raise BadZipfile("Truncated central directory")
835 raise BadZipfile("Bad magic number for central directory"
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
zipfile.py 16 __all__ = ["BadZipfile", "error", "ZIP_STORED", "ZIP_DEFLATED", "is_zipfile",
19 class BadZipfile(Exception):
29 error = BadZipfile # The exception raised by this module
174 raise BadZipfile("zipfiles that span multiple disks are not supported")
596 raise BadZipfile("Bad CRC-32 for file %r" % self.name)
723 except BadZipfile:
747 except BadZipfile:
759 raise BadZipfile("File is not a zip file")
761 raise BadZipfile, "File is not a zip file"
786 raise BadZipfile, "Bad magic number for central directory"
    [all...]
  /external/python/cpython2/Lib/test/
test_zipfile.py 634 raise zipfile.BadZipfile()
635 except zipfile.BadZipfile:
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_zipfile.py 583 raise zipfile.BadZipfile()
584 except zipfile.BadZipfile:
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_zipfile.py 583 raise zipfile.BadZipfile()
584 except zipfile.BadZipfile:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zipfile.py 583 raise zipfile.BadZipfile()
584 except zipfile.BadZipfile:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zipfile.py 583 raise zipfile.BadZipfile()
584 except zipfile.BadZipfile:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_zipfile.py 458 raise zipfile.BadZipfile()
459 except zipfile.BadZipfile:
716 except zipfile.BadZipfile:
778 self.assertRaises(zipfile.BadZipfile, zipfile.ZipFile, TESTFN)
782 self.assertRaises(zipfile.BadZipfile, zipfile.ZipFile, TESTFN)
    [all...]
  /cts/tools/cts-media/
get_achievable_rates.py 346 except zipfile.BadZipfile:
  /external/python/cpython3/Lib/
zipfile.py 39 __all__ = ["BadZipFile", "BadZipfile", "error",
43 class BadZipFile(Exception):
53 error = BadZipfile = BadZipFile # Pre-3.2 compatibility names
210 raise BadZipFile("zipfiles that span multiple disks are not supported")
452 raise BadZipFile("Corrupt extra field %04x (size=%d)" % (tp, ln))
865 raise BadZipFile("Bad CRC-32 for file %r" % self.name)
    [all...]

Completed in 6605 milliseconds