Home
last modified time | relevance | path

Searched refs:DECODE_ERROR (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Python/
Dfileutils.c45 static const size_t DECODE_ERROR = ((size_t)-1); variable
127 if (dest != NULL && count != DECODE_ERROR) { in _Py_mbstowcs()
131 return DECODE_ERROR; in _Py_mbstowcs()
145 if (count != 0 && count != DECODE_ERROR && count != INCOMPLETE_CHARACTER) { in _Py_mbrtowc()
147 return DECODE_ERROR; in _Py_mbrtowc()
222 if (res != DECODE_ERROR && wch == L'\xA7') { in check_force_ascii()
270 if (res != DECODE_ERROR) { in check_force_ascii()
462 if (argsize != DECODE_ERROR) { in decode_current_locale()
472 if (count != DECODE_ERROR) { in decode_current_locale()
515 if (converted == DECODE_ERROR) { in decode_current_locale()
[all …]
/third_party/gstreamer/gstplugins_bad/ext/openjpeg/
Dgstopenjpegdec.c1382 #define DECODE_ERROR(self, message, err_code, mutex_unlock) { \ macro
1413 DECODE_ERROR (self, message, OPENJPEG_ERROR_INIT, FALSE); in gst_openjpeg_dec_decode_stripe()
1430 DECODE_ERROR (self, message, OPENJPEG_ERROR_OPEN, FALSE); in gst_openjpeg_dec_decode_stripe()
1440 DECODE_ERROR (self, message, OPENJPEG_ERROR_MAP_READ, FALSE); in gst_openjpeg_dec_decode_stripe()
1444 DECODE_ERROR (self, message, OPENJPEG_ERROR_MAP_READ, FALSE); in gst_openjpeg_dec_decode_stripe()
1448 DECODE_ERROR (self, message, OPENJPEG_ERROR_OPEN, FALSE); in gst_openjpeg_dec_decode_stripe()
1463 DECODE_ERROR (self, message, OPENJPEG_ERROR_DECODE, FALSE); in gst_openjpeg_dec_decode_stripe()
1466 DECODE_ERROR (self, message, OPENJPEG_ERROR_DECODE, FALSE); in gst_openjpeg_dec_decode_stripe()
1470 DECODE_ERROR (self, message, OPENJPEG_ERROR_DECODE, FALSE); in gst_openjpeg_dec_decode_stripe()
1479 DECODE_ERROR (self, message, OPENJPEG_ERROR_NEGOCIATE, TRUE); in gst_openjpeg_dec_decode_stripe()
[all …]
/third_party/python/Lib/
Dssl.py203 DECODE_ERROR = 50 variable in _TLSAlertType
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs587 pub const DECODE_ERROR: SslAlert = SslAlert(ffi::SSL_AD_DECODE_ERROR); constant
/third_party/python/Modules/
D_ssl.c5804 ADD_AD_CONSTANT(DECODE_ERROR); in sslmodule_init_constants()