Home
last modified time | relevance | path

Searched refs:PyCodec_LookupError (Results 1 – 23 of 23) sorted by relevance

/aosp_15_r20/external/python/cpython2/Include/
Dcodecs.h192 PyAPI_FUNC(PyObject *) PyCodec_LookupError(const char *name);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dcodecs.h219 PyAPI_FUNC(PyObject *) PyCodec_LookupError(const char *name);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dcodecs.h219 PyAPI_FUNC(PyObject *) PyCodec_LookupError(const char *name);
/aosp_15_r20/external/python/cpython3/Include/
Dcodecs.h219 PyAPI_FUNC(PyObject *) PyCodec_LookupError(const char *name);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dcodecs.h219 PyAPI_FUNC(PyObject *) PyCodec_LookupError(const char *name);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dcodecs.h219 PyAPI_FUNC(PyObject *) PyCodec_LookupError(const char *name);
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dcodec.rst100 .. c:function:: PyObject* PyCodec_LookupError(const char *name)
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dcodec.rst92 .. c:function:: PyObject* PyCodec_LookupError(const char *name)
/aosp_15_r20/external/python/cpython3/Modules/
D_codecsmodule.c996 return PyCodec_LookupError(name); in _codecs_lookup_error_impl()
/aosp_15_r20/external/python/cpython2/Python/
Dcodecs.c579 PyObject *PyCodec_LookupError(const char *name) in PyCodec_LookupError() function
/aosp_15_r20/external/python/cpython2/PC/os2emx/
Dpython27.def888 "PyCodec_LookupError"
/aosp_15_r20/external/python/cpython2/Modules/
D_codecsmodule.c1050 return PyCodec_LookupError(name); in lookup_error()
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c153 EXPORT_FUNC(PyCodec_LookupError)
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat79 function,PyCodec_LookupError,3.2,,
Drefcounts.dat321 PyCodec_LookupError:PyObject*::+1:
322 PyCodec_LookupError:const char*:name::
Dpython3.11.abi86 …<elf-symbol name='PyCodec_LookupError' type='func-type' binding='global-binding' visibility='defau…
11539PyCodec_LookupError' mangled-name='PyCodec_LookupError' filepath='Python/codecs.c' line='638' colu…
/aosp_15_r20/external/python/cpython3/Python/
Dcodecs.c638 PyObject *PyCodec_LookupError(const char *name) in PyCodec_LookupError() function
/aosp_15_r20/external/python/cpython2/Modules/cjkcodecs/
Dmultibytecodec.c97 cb = PyCodec_LookupError(PyString_AS_STRING(errors)); in call_error_callback()
/aosp_15_r20/external/python/cpython3/Modules/cjkcodecs/
Dmultibytecodec.c123 cb = PyCodec_LookupError(str); in call_error_callback()
/aosp_15_r20/external/python/cpython2/Objects/
Dunicodeobject.c1477 *errorHandler = PyCodec_LookupError(errors); in unicode_decode_call_errorhandler()
3579 *errorHandler = PyCodec_LookupError(errors); in unicode_encode_call_errorhandler()
4900 *errorHandler = PyCodec_LookupError(errors); in unicode_translate_call_errorhandler()
/aosp_15_r20/external/python/cpython3/Objects/
Dunicodeobject.c490 PyObject *handler = PyCodec_LookupError(errors); in unicode_check_encoding_errors()
4409 *errorHandler = PyCodec_LookupError(errors); in unicode_decode_call_errorhandler_wchar()
4523 *errorHandler = PyCodec_LookupError(errors); in unicode_decode_call_errorhandler_writer()
7003 *errorHandler = PyCodec_LookupError(errors); in unicode_encode_call_errorhandler()
8940 *errorHandler = PyCodec_LookupError(errors); in unicode_translate_call_errorhandler()
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml510 [function.PyCodec_LookupError]
/aosp_15_r20/external/python/cpython3/Modules/_io/
Dtextio.c1014 PyObject *handler = PyCodec_LookupError(name); in io_check_errors()