Home
last modified time | relevance | path

Searched refs:error_handler (Results 1 - 25 of 27) sorted by relevance

12

/third_party/python/Lib/distutils/command/
H A Dcheck.py18 debug=0, encoding='ascii', error_handler='replace'):
21 debug, encoding, error_handler)
138 error_handler=settings.error_encoding_error_handler)
/third_party/json/include/nlohmann/detail/output/
H A Dserializer.hpp75 , error_handler(error_handler_) in serializer()
509 switch (error_handler) in dump_escaped()
532 if (error_handler == error_handler_t::replace) in dump_escaped()
601 switch (error_handler) in dump_escaped()
983 /// error_handler how to react on decoding errors
984 const error_handler_t error_handler;
/third_party/node/deps/v8/src/ast/
H A Dmodules.cc339 ModuleScope* module_scope, PendingCompilationErrorHandler* error_handler, in Validate()
342 DCHECK_NOT_NULL(error_handler); in Validate()
348 error_handler->ReportMessageAt( in Validate()
360 error_handler->ReportMessageAt( in Validate()
338 Validate( ModuleScope* module_scope, PendingCompilationErrorHandler* error_handler, Zone* zone) Validate() argument
H A Dmodules.h86 PendingCompilationErrorHandler* error_handler, Zone* zone);
/third_party/python/Modules/
H A D_testinternalcapi.c420 _Py_error_handler error_handler = _Py_GetErrorHandler(errors); in encode_locale_ex() local
427 current_locale, error_handler); in encode_locale_ex()
464 _Py_error_handler error_handler = _Py_GetErrorHandler(errors); in decode_locale_ex() local
471 current_locale, error_handler); in decode_locale_ex()
/third_party/python/Include/internal/
H A Dpycore_unicodeobject.h41 _Py_error_handler error_handler; member
/third_party/python/Objects/stringlib/
H A Dcodecs.h265 _Py_error_handler error_handler, in utf8_encoder()
316 if (error_handler == _Py_ERROR_UNKNOWN) { in utf8_encoder()
317 error_handler = _Py_GetErrorHandler(errors); in utf8_encoder()
329 switch (error_handler) in utf8_encoder()
261 utf8_encoder(_PyBytesWriter *writer, PyObject *unicode, const STRINGLIB_CHAR *data, Py_ssize_t size, _Py_error_handler error_handler, const char *errors) utf8_encoder() argument
/third_party/python/Lib/test/
H A Dtest_codecs.py861 for data, error_handler, expected in (
867 with self.subTest(data=data, error_handler=error_handler,
869 self.assertEqual(data.decode(self.encoding, error_handler),
3255 for data, error_handler, expected in (
3263 with self.subTest(data=data, error_handler=error_handler,
3265 self.assertEqual(data.encode('ascii', error_handler),
3277 for data, error_handler, expected in (
3283 with self.subTest(data=data, error_handler
[all...]
/third_party/alsa-utils/seq/aconnect/
H A Daconnect.c39 static void error_handler(const char *file, int line, const char *function, int err, const char *fmt, ...) in error_handler() function
389 snd_lib_error_set_handler(error_handler); in main()
/third_party/mesa3d/src/glx/apple/
H A Dapple_glx_drawable.c352 error_handler(Display * dpy, XErrorEvent * err) in error_handler() function
374 old_handler = XSetErrorHandler(error_handler); in apple_glx_garbage_collect_drawables()
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/
H A Dittnotify_static.c270 NULL, /* error_handler */
289 ITT_EXTERN_C void _N_(error_handler)(__itt_error_code, va_list args);
301 if (_N_(_ittapi_global).error_handler != NULL) in __itt_report_error()
303 __itt_error_handler_t* handler = (__itt_error_handler_t*)(size_t)_N_(_ittapi_global).error_handler; in __itt_report_error()
307 _N_(error_handler)(code, args); in __itt_report_error()
1310 __itt_error_handler_t* prev = (__itt_error_handler_t*)(size_t)_N_(_ittapi_global).error_handler; in set_error_handler()
1311 _N_(_ittapi_global).error_handler = (void*)(size_t)handler; in set_error_handler()
H A Dittnotify_config.h440 void* error_handler; member
/third_party/alsa-utils/alsactl/
H A Dalsactl.h27 void error_handler(const char *file, int line, const char *function, int err, const char *fmt, ...);
H A Dalsactl.c444 snd_lib_error_set_handler(error_handler); in main()
H A Dutils.c180 void error_handler(const char *file, int line, const char *function, int err, const char *fmt, ...) in error_handler() function
/third_party/python/Objects/
H A Dunicodeobject.c238 unicode_encode_utf8(PyObject *unicode, _Py_error_handler error_handler,
242 _Py_error_handler error_handler, const char *errors,
3729 unicode_encode_locale(PyObject *unicode, _Py_error_handler error_handler, in unicode_encode_locale() argument
3748 current_locale, error_handler); in unicode_encode_locale()
3781 _Py_error_handler error_handler = _Py_GetErrorHandler(errors); in PyUnicode_EncodeLocale() local
3782 return unicode_encode_locale(unicode, error_handler, 1); in PyUnicode_EncodeLocale()
3792 fs_codec->error_handler, in PyUnicode_EncodeFSDefault()
4003 _Py_error_handler error_handler = _Py_GetErrorHandler(errors); in PyUnicode_DecodeLocaleAndSize() local
4004 return unicode_decode_locale(str, len, error_handler, 1); in PyUnicode_DecodeLocaleAndSize()
4011 _Py_error_handler error_handler in PyUnicode_DecodeLocale() local
5095 unicode_decode_utf8(const char *s, Py_ssize_t size, _Py_error_handler error_handler, const char *errors, Py_ssize_t *consumed) unicode_decode_utf8() argument
5535 unicode_encode_utf8(PyObject *unicode, _Py_error_handler error_handler, const char *errors) unicode_encode_utf8() argument
7062 _Py_error_handler error_handler = _Py_ERROR_UNKNOWN; unicode_encode_ucs1() local
7265 _Py_error_handler error_handler = _Py_ERROR_UNKNOWN; PyUnicode_DecodeASCII() local
8670 charmap_encoding_error( PyObject *unicode, Py_ssize_t *inpos, PyObject *mapping, PyObject **exceptionObject, _Py_error_handler *error_handler, PyObject **error_handler_obj, const char *errors, PyObject **res, Py_ssize_t *respos) charmap_encoding_error() argument
8829 _Py_error_handler error_handler = _Py_ERROR_UNKNOWN; _PyUnicode_EncodeCharmap() local
15960 _Py_error_handler error_handler; init_fs_codec() local
[all...]
/third_party/skia/third_party/externals/spirv-cross/
H A Dmain.cpp73 function<void()> error_handler; member
118 if (cbs.error_handler) in parse()
120 cbs.error_handler(); in parse()
1688 cbs.error_handler = [] { print_help(); }; in main_inner()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Dittnotify_config.h344 void* error_handler; member
/third_party/python/Lib/email/
H A D_header_value_parser.py2954 error_handler = 'strict'
2962 error_handler = 'surrogateescape'
2967 value, safe='', errors=error_handler)
2993 partial, safe='', errors=error_handler)
/third_party/node/test/fixtures/wpt/resources/
H A Dtestharness.js4749 var error_handler = function(error, message, stack) {
4783 error_handler(e.error, message, stack);
4797 error_handler(e.reason, message, stack);
/third_party/skia/third_party/externals/libpng/contrib/tools/
H A Dpngfix.c3169 error_handler(png_structp png_ptr, png_const_charp message) in error_handler() function
3587 error_handler, warning_handler); in read_png()
/third_party/json/include/nlohmann/
H A Djson.hpp1262 const error_handler_t error_handler = error_handler_t::strict) const in dump()
1265 serializer s(detail::output_adapter<char, string_t>(result), indent_char, error_handler); in dump() local
/third_party/json/tests/abi/include/nlohmann/
H A Djson_v3_10_5.hpp16109 , error_handler(error_handler_)
16543 switch (error_handler)
16568 if (error_handler == error_handler_t::replace)
16637 switch (error_handler)
17007 /// error_handler how to react on decoding errors
17008 const error_handler_t error_handler;
18429 const error_handler_t error_handler = error_handler_t::strict) const
18432 serializer s(detail::output_adapter<char, string_t>(result), indent_char, error_handler);
/third_party/json/single_include/nlohmann/
H A Djson.hpp17959 , error_handler(error_handler_)
18393 switch (error_handler)
18416 if (error_handler == error_handler_t::replace)
18485 switch (error_handler)
18867 /// error_handler how to react on decoding errors
18868 const error_handler_t error_handler;
20440 const error_handler_t error_handler = error_handler_t::strict) const
20443 serializer s(detail::output_adapter<char, string_t>(result), indent_char, error_handler);
/third_party/node/deps/v8/third_party/ittapi/include/
H A Dittnotify.h4305 #define __itt_error_handler ITT_JOIN(INTEL_ITTNOTIFY_PREFIX, error_handler)

Completed in 93 milliseconds

12