Lines Matching defs:errcode
444 const char *errstr, int lineno, unsigned long errcode)
450 if (errcode != 0) {
453 lib = ERR_GET_LIB(errcode);
454 reason = ERR_GET_REASON(errcode);
472 errstr = ERR_reason_error_string(errcode);
692 _setSSLError (_sslmodulestate *state, const char *errstr, int errcode, const char *filename, int lineno)
695 errcode = ERR_peek_last_error();
697 errcode = 0;
698 fill_and_set_sslerror(state, NULL, state->PySSLErrorObject, errcode, errstr, lineno, errcode);
6094 struct py_ssl_error_code *errcode;
6108 errcode = error_codes;
6109 while (errcode->mnemonic != NULL) {
6111 mnemo = PyUnicode_FromString(errcode->mnemonic);
6112 key = Py_BuildValue("ii", errcode->library, errcode->reason);
6121 errcode++;