Searched refs:mnemo (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Tools/ssl/ |
D | make_ssl_data.py | 71 for mnemo, (libcode, _, _) in sorted(error_libraries.items()): 72 w(' {"%s", %s},' % (mnemo, libcode))
|
/external/python/cpython3/Tools/ssl/ |
D | make_ssl_data.py | 82 for mnemo, (libcode, _, _) in sorted(error_libraries.items()): 84 w(' {"%s", %s},' % (mnemo, libcode))
|
/external/python/cpython2/Modules/ |
D | _ssl.c | 4436 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.c | 6374 PyObject *mnemo, *key; in PyInit__ssl() local 6375 mnemo = PyUnicode_FromString(errcode->mnemonic); in PyInit__ssl() 6377 if (mnemo == NULL || key == NULL) in PyInit__ssl() 6379 if (PyDict_SetItem(err_codes_to_names, key, mnemo)) in PyInit__ssl() 6381 if (PyDict_SetItem(err_names_to_codes, mnemo, key)) in PyInit__ssl() 6384 Py_DECREF(mnemo); in PyInit__ssl() 6397 PyObject *mnemo, *key; in PyInit__ssl() local 6399 mnemo = PyUnicode_FromString(libcode->library); in PyInit__ssl() 6400 if (key == NULL || mnemo == NULL) in PyInit__ssl() 6402 if (PyDict_SetItem(lib_codes_to_names, key, mnemo)) in PyInit__ssl() [all …]
|