Home
last modified time | relevance | path

Searched refs:codec_error_registry (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Python/
Dcodecs.c572 return PyDict_SetItemString(interp->codec_error_registry, in PyCodec_RegisterError()
589 handler = PyDict_GetItemString(interp->codec_error_registry, (char *)name); in PyCodec_LookupError()
1010 interp->codec_error_registry = PyDict_New(); in _PyCodecRegistry_Init()
1012 if (interp->codec_error_registry) { in _PyCodecRegistry_Init()
1027 interp->codec_error_registry == NULL) in _PyCodecRegistry_Init()
Dpystate.c76 interp->codec_error_registry = NULL; in PyInterpreterState_New()
108 Py_CLEAR(interp->codec_error_registry); in PyInterpreterState_Clear()
/external/python/cpython3/Include/internal/
Dpycore_interp.h107 PyObject *codec_error_registry; member
/external/python/cpython2/Include/
Dpystate.h28 PyObject *codec_error_registry; member
/external/python/cpython3/Python/
Dcodecs.c631 return PyDict_SetItemString(interp->codec_error_registry, in PyCodec_RegisterError()
648 handler = _PyDict_GetItemStringWithError(interp->codec_error_registry, name); in PyCodec_LookupError()
1510 interp->codec_error_registry = PyDict_New(); in _PyCodecRegistry_Init()
1511 if (interp->codec_error_registry == NULL) { in _PyCodecRegistry_Init()
Dpystate.c299 Py_CLEAR(interp->codec_error_registry); in PyInterpreterState_Clear()