Home
last modified time | relevance | path

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

/external/python/cpython2/Tools/ssl/
Dmake_ssl_data.py71 for mnemo, (libcode, _, _) in sorted(error_libraries.items()):
72 w(' {"%s", %s},' % (mnemo, libcode))
/external/python/cpython3/Tools/ssl/
Dmake_ssl_data.py71 for mnemo, (libcode, _, _) in sorted(error_libraries.items()):
72 w(' {"%s", %s},' % (mnemo, libcode))
/external/python/cpython2/Modules/
D_ssl.c4436 PyObject *mnemo, *key; in init_ssl() local
4437 mnemo = PyUnicode_FromString(errcode->mnemonic); in init_ssl()
4439 if (mnemo == NULL || key == NULL) in init_ssl()
4441 if (PyDict_SetItem(err_codes_to_names, key, mnemo)) in init_ssl()
4443 if (PyDict_SetItem(err_names_to_codes, mnemo, key)) in init_ssl()
4446 Py_DECREF(mnemo); in init_ssl()
4459 PyObject *mnemo, *key; in init_ssl() local
4461 mnemo = PyUnicode_FromString(libcode->library); in init_ssl()
4462 if (key == NULL || mnemo == NULL) in init_ssl()
4464 if (PyDict_SetItem(lib_codes_to_names, key, mnemo)) in init_ssl()
[all …]
/external/python/cpython3/Modules/
D_ssl.c6081 PyObject *mnemo, *key; in PyInit__ssl() local
6082 mnemo = PyUnicode_FromString(errcode->mnemonic); in PyInit__ssl()
6084 if (mnemo == NULL || key == NULL) in PyInit__ssl()
6086 if (PyDict_SetItem(err_codes_to_names, key, mnemo)) in PyInit__ssl()
6088 if (PyDict_SetItem(err_names_to_codes, mnemo, key)) in PyInit__ssl()
6091 Py_DECREF(mnemo); in PyInit__ssl()
6104 PyObject *mnemo, *key; in PyInit__ssl() local
6106 mnemo = PyUnicode_FromString(libcode->library); in PyInit__ssl()
6107 if (key == NULL || mnemo == NULL) in PyInit__ssl()
6109 if (PyDict_SetItem(lib_codes_to_names, key, mnemo)) in PyInit__ssl()
[all …]