Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dcodecs.c32 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init()) in PyCodec_Register()
42 return PyList_Append(interp->codec_search_path, search_function); in PyCodec_Register()
106 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init()) in _PyCodec_Lookup()
131 len = PyList_Size(interp->codec_search_path); in _PyCodec_Lookup()
144 func = PyList_GetItem(interp->codec_search_path, i); in _PyCodec_Lookup()
566 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init()) in PyCodec_RegisterError()
584 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init()) in PyCodec_LookupError()
1005 if (interp->codec_search_path != NULL) in _PyCodecRegistry_Init()
1008 interp->codec_search_path = PyList_New(0); in _PyCodecRegistry_Init()
1025 if (interp->codec_search_path == NULL || in _PyCodecRegistry_Init()
Dpystate.c74 interp->codec_search_path = NULL; in PyInterpreterState_New()
106 Py_CLEAR(interp->codec_search_path); in PyInterpreterState_Clear()
/external/python/cpython3/Python/
Dcodecs.c36 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init()) in PyCodec_Register()
46 return PyList_Append(interp->codec_search_path, search_function); in PyCodec_Register()
112 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init()) in _PyCodec_Lookup()
139 len = PyList_Size(interp->codec_search_path); in _PyCodec_Lookup()
152 func = PyList_GetItem(interp->codec_search_path, i); in _PyCodec_Lookup()
197 if (interp->codec_search_path == NULL) { in _PyCodec_Forget()
630 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init()) in PyCodec_RegisterError()
648 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init()) in PyCodec_LookupError()
1503 if (interp->codec_search_path != NULL) in _PyCodecRegistry_Init()
1506 interp->codec_search_path = PyList_New(0); in _PyCodecRegistry_Init()
[all …]
Dpystate.c143 interp->codec_search_path = NULL; in PyInterpreterState_New()
203 Py_CLEAR(interp->codec_search_path); in PyInterpreterState_Clear()
/external/python/cpython2/Include/
Dpystate.h26 PyObject *codec_search_path; member
/external/python/cpython3/Include/
Dpystate.h139 PyObject *codec_search_path; member