Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dcodecs.c118 result = PyDict_GetItem(interp->codec_search_cache, v); in _PyCodec_Lookup()
170 PyDict_SetItem(interp->codec_search_cache, v, result); in _PyCodec_Lookup()
1009 interp->codec_search_cache = PyDict_New(); in _PyCodecRegistry_Init()
1026 interp->codec_search_cache == NULL || in _PyCodecRegistry_Init()
Dpystate.c75 interp->codec_search_cache = NULL; in PyInterpreterState_New()
107 Py_CLEAR(interp->codec_search_cache); in PyInterpreterState_Clear()
/external/python/cpython3/Python/
Dcodecs.c124 result = PyDict_GetItem(interp->codec_search_cache, v); in _PyCodec_Lookup()
178 if (PyDict_SetItem(interp->codec_search_cache, v, result) < 0) { in _PyCodec_Lookup()
210 result = PyDict_DelItem(interp->codec_search_cache, v); in _PyCodec_Forget()
1507 interp->codec_search_cache = PyDict_New(); in _PyCodecRegistry_Init()
1524 interp->codec_search_cache == NULL || in _PyCodecRegistry_Init()
Dpystate.c144 interp->codec_search_cache = NULL; in PyInterpreterState_New()
204 Py_CLEAR(interp->codec_search_cache); in PyInterpreterState_Clear()
/external/python/cpython2/Include/
Dpystate.h27 PyObject *codec_search_cache; member
/external/python/cpython3/Include/
Dpystate.h140 PyObject *codec_search_cache; member