Home
last modified time | relevance | path

Searched refs:ReadError (Results 1 – 18 of 18) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
DQueueChannel.h44 : ReadError([]() { return Error::success(); }), in Queue()
54 Error checkReadError() { return ReadError(); } in checkReadError()
59 ReadError = std::move(NewReadError); in setReadError()
70 std::function<Error()> ReadError, WriteError; variable
/external/sonivox/arm-wt-22k/lib_src/
Deas_smf.c1084 goto ReadError; in SMF_ParseHeader()
1086 goto ReadError; in SMF_ParseHeader()
1090 goto ReadError; in SMF_ParseHeader()
1092 goto ReadError; in SMF_ParseHeader()
1107 goto ReadError; in SMF_ParseHeader()
1150 goto ReadError; in SMF_ParseHeader()
1154 goto ReadError; in SMF_ParseHeader()
1158 goto ReadError; in SMF_ParseHeader()
1182 goto ReadError; in SMF_ParseHeader()
1194 goto ReadError; in SMF_ParseHeader()
[all …]
/external/python/cpython2/Lib/test/
Dtest_tarfile.py248 except tarfile.ReadError:
261 self.assertRaises(tarfile.ReadError, tarfile.open, tmpname, self.mode)
262 self.assertRaises(tarfile.ReadError, tarfile.open, tmpname)
311 with self.assertRaisesRegexp(tarfile.ReadError, "unexpected end of data"):
318 with self.assertRaisesRegexp(tarfile.ReadError, "unexpected end of data"):
321 with self.assertRaisesRegexp(tarfile.ReadError, "unexpected end of data"):
401 self.assertRaises(tarfile.ReadError, tarfile.open, tarname, self.mode)
403 self.assertRaises(tarfile.ReadError, tarfile.open,
482 except tarfile.ReadError:
545 except tarfile.ReadError:
[all …]
/external/python/cpython3/Lib/
Dtarfile.py279 class ReadError(TarError): class
482 raise ReadError("not a gzip file")
556 raise ReadError("invalid compressed data")
697 raise ReadError("unexpected end of data")
1498 raise ReadError(str(e))
1574 except (ReadError, CompressionError):
1578 raise ReadError("file could not be opened successfully")
1641 raise ReadError("not a gzip file")
1649 raise ReadError("not a gzip file")
1678 raise ReadError("not a bzip2 file")
[all …]
Dshutil.py68 class ReadError(OSError): class
896 raise ReadError("%s is not a zip file" % filename)
931 raise ReadError(
995 raise ReadError("Unknown archive format '{0}'".format(filename))
/external/python/cpython2/Lib/
Dtarfile.py332 class ReadError(TarError): class
524 raise ReadError("not a gzip file")
598 raise ReadError("invalid compressed data")
750 raise ReadError("unexpected end of data")
1601 raise ReadError(str(e))
1676 except (ReadError, CompressionError), e:
1680 raise ReadError("file could not be opened successfully")
1743 raise ReadError("not a gzip file")
1751 raise ReadError("not a gzip file")
1782 raise ReadError("not a bzip2 file")
[all …]
/external/python/cpython3/Lib/test/
Dtest_tarfile.py330 except tarfile.ReadError:
349 self.assertRaises(tarfile.ReadError, tarfile.open, tmpname, self.mode)
350 self.assertRaises(tarfile.ReadError, tarfile.open, tmpname)
385 with self.assertRaisesRegex(tarfile.ReadError, "unexpected end of data"):
392 with self.assertRaisesRegex(tarfile.ReadError, "unexpected end of data"):
395 with self.assertRaisesRegex(tarfile.ReadError, "unexpected end of data"):
501 self.assertRaises(tarfile.ReadError, tarfile.open, tarname, self.mode)
503 self.assertRaises(tarfile.ReadError, tarfile.open,
634 except tarfile.ReadError:
739 except tarfile.ReadError as e:
[all …]
Dtest_shutil.py1257 self.assertRaises(shutil.ReadError, unpack_archive, converter(TESTFN))
/external/libbrillo/brillo/streams/
Dopenssl_stream_bio_unittests.cc77 TEST_F(StreamBIOTest, ReadError) { in TEST_F() argument
/external/python/cpython3/Misc/NEWS.d/
D3.5.0b4.rst217 tarfile now raises a ReadError if an archive is truncated inside a data
/external/tensorflow/tensorflow/core/lib/io/
Drecordio_test.cc304 TEST_F(RecordioTest, ReadError) { in TEST_F() argument
/external/pdfium/core/fpdfapi/parser/
Dcpdf_read_validator_unittest.cpp136 TEST(CPDF_ReadValidatorTest, ReadError) { in TEST() argument
/external/python/cpython2/Doc/library/
Dtarfile.rst74 to open a certain (compressed) file for reading, :exc:`ReadError` is raised. Use
159 .. exception:: ReadError
/external/python/cpython3/Doc/library/
Dtarfile.rst95 :exc:`ReadError` is raised. Use *mode* ``'r'`` to avoid this. If a
173 .. exception:: ReadError
/external/python/cpython2/Misc/NEWS.d/
D2.7.11rc1.rst506 tarfile now raises a ReadError if an archive is truncated inside a data
D2.7.7rc1.rst505 TarFile no longer raise ReadError when opened in write mode.
D2.7a1.rst1623 tarfile now opens empty archives correctly and consistently raises ReadError
/external/python/cpython3/Misc/
DHISTORY482 - Issue #24259: tarfile now raises a ReadError if an archive is truncated
2658 - Issue #20243: TarFile no longer raise ReadError when opened in write mode.
13918 raises ReadError on empty files.