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/cpython2/Include/
Dpystate.h27 PyObject *codec_search_cache; member
/external/python/cpython3/Python/
Dcodecs.c123 result = PyDict_GetItemWithError(interp->codec_search_cache, v); in _PyCodec_Lookup()
181 if (PyDict_SetItem(interp->codec_search_cache, v, result) < 0) { in _PyCodec_Lookup()
212 result = PyDict_DelItem(interp->codec_search_cache, v); in _PyCodec_Forget()
1511 interp->codec_search_cache = PyDict_New(); in _PyCodecRegistry_Init()
1528 interp->codec_search_cache == NULL || in _PyCodecRegistry_Init()
Dpystate.c271 Py_CLEAR(interp->codec_search_cache); in _PyInterpreterState_Clear()
/external/python/cpython3/Include/internal/
Dpycore_pystate.h97 PyObject *codec_search_cache; member