Searched refs:lib_codes_to_names (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Tools/ssl/ |
D | make_ssl_data.py | 56 lib = error_libraries[_ssl.lib_codes_to_names[libnum]]
|
/external/python/cpython3/Tools/ssl/ |
D | make_ssl_data.py | 67 lib = error_libraries[_ssl.lib_codes_to_names[libnum]]
|
/external/python/cpython2/Modules/ |
D | _ssl.c | 89 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.c | 92 static PyObject *lib_codes_to_names; variable 632 lib_obj = PyDict_GetItemWithError(lib_codes_to_names, key); in fill_and_set_sslerror() 6392 lib_codes_to_names = PyDict_New(); in PyInit__ssl() 6393 if (lib_codes_to_names == NULL) in PyInit__ssl() 6402 if (PyDict_SetItem(lib_codes_to_names, key, mnemo)) in PyInit__ssl() 6408 if (PyModule_AddObject(m, "lib_codes_to_names", lib_codes_to_names)) in PyInit__ssl()
|