Home
last modified time | relevance | path

Searched refs:lib_codes_to_names (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Tools/ssl/
Dmake_ssl_data.py56 lib = error_libraries[_ssl.lib_codes_to_names[libnum]]
/external/python/cpython3/Tools/ssl/
Dmake_ssl_data.py56 lib = error_libraries[_ssl.lib_codes_to_names[libnum]]
/external/python/cpython2/Modules/
D_ssl.c89 static PyObject *lib_codes_to_names; variable
429 lib_obj = PyDict_GetItem(lib_codes_to_names, key); in fill_and_set_sslerror()
4454 lib_codes_to_names = PyDict_New(); in init_ssl()
4455 if (lib_codes_to_names == NULL) in init_ssl()
4464 if (PyDict_SetItem(lib_codes_to_names, key, mnemo)) in init_ssl()
4470 if (PyModule_AddObject(m, "lib_codes_to_names", lib_codes_to_names)) in init_ssl()
/external/python/cpython3/Modules/
D_ssl.c90 static PyObject *lib_codes_to_names; variable
602 lib_obj = PyDict_GetItem(lib_codes_to_names, key); in fill_and_set_sslerror()
6099 lib_codes_to_names = PyDict_New(); in PyInit__ssl()
6100 if (lib_codes_to_names == NULL) in PyInit__ssl()
6109 if (PyDict_SetItem(lib_codes_to_names, key, mnemo)) in PyInit__ssl()
6115 if (PyModule_AddObject(m, "lib_codes_to_names", lib_codes_to_names)) in PyInit__ssl()