Lines Matching refs:res
344 char *res; in app_conf_try_string() local
347 res = NCONF_get_string(conf, group, name); in app_conf_try_string()
348 if (res == NULL) in app_conf_try_string()
352 return res; in app_conf_try_string()
721 int res = X509_cmp_timeframe(vpm, X509_get0_notBefore(cert), in warn_cert() local
724 if (res != 0) in warn_cert()
725 warn_cert_msg(uri, cert, res > 0 ? "has expired" : "not yet valid"); in warn_cert()
2695 ASN1_VALUE *res; in app_http_post_asn1() local
2714 res = ASN1_item_d2i_bio(rsp_it, rsp, NULL); in app_http_post_asn1()
2716 return res; in app_http_post_asn1()
3459 EVP_PKEY *res = NULL; in app_keygen() local
3471 if (EVP_PKEY_keygen(ctx, &res) <= 0) in app_keygen()
3474 return res; in app_keygen()
3479 EVP_PKEY *res = NULL; in app_paramgen() local
3484 if (EVP_PKEY_paramgen(ctx, &res) <= 0) in app_paramgen()
3487 return res; in app_paramgen()